Compare commits

..

2 commits

Author SHA1 Message Date
a4a44564d0 Update all stable non-major dependencies
All checks were successful
/ Ansible Lint (pull_request) Successful in 2m57s
/ Ansible Lint (push) Successful in 2m59s
2026-04-01 23:46:50 +00:00
8e5b0083b3
fix docker compose services not coming up after reboot
All checks were successful
/ Ansible Lint (push) Successful in 2m18s
Fix the issue by adding missing restart configuration to docker compose
deployments.
2026-04-02 01:16:08 +02:00
5 changed files with 8 additions and 2 deletions

View file

@ -24,7 +24,7 @@ jobs:
# work in our environmnet.
# Rather manually setup python (pip) before instead.
- name: Run ansible-lint
uses: https://github.com/ansible/ansible-lint@v26.3.0
uses: https://github.com/ansible/ansible-lint@v26.4.0
with:
setup_python: "false"
requirements_file: "requirements.yml"

View file

@ -20,3 +20,4 @@ services:
volumes:
- ./configs/acmedns.cfg:/etc/acme-dns/config.cfg:ro
- ./data/acmedns:/var/lib/acme-dns
restart: unless-stopped

View file

@ -59,6 +59,7 @@ services:
- "SMTP_USERNAME=pad@hamburg.ccc.de"
- "SMTP_PASSWORD={{ secret__pad_smtp_password }}"
- "URL=https://pad.hamburg.ccc.de"
restart: unless-stopped
depends_on:
- database

View file

@ -18,6 +18,7 @@ services:
timeout: 5s
start_period: 30s
retries: 5
restart: unless-stopped
web:
image: git.hamburg.ccc.de/ccchh/sunders/web:latest
@ -33,6 +34,7 @@ services:
IMPRESSUM_URL: https://hamburg.ccc.de/imprint/
ports:
- "8080:80"
restart: unless-stopped
depends_on:
data_handler:
condition: service_started
@ -48,6 +50,7 @@ services:
CAMERA_USER_PASSWORD: "{{ secret__sunders_db_camera_password }}"
CAMERA_SELECT_USER: camera_select
CAMERA_SELECT_USER_PASSWORD: "{{ secret__sunders_db_camera_select_password }}"
restart: unless-stopped
depends_on:
db:
condition: service_healthy

View file

@ -5,6 +5,7 @@
services:
database:
image: docker.io/library/postgres:18.3
restart: always
volumes:
- ./database:/var/lib/postgresql
environment: