Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
53b2f491f8 fix: Uses root password
Some checks failed
/ Ansible Lint (pull_request) Failing after 2m10s
2025-11-01 21:53:43 +01:00
0f8c0ffef9 fix: Replaces password in healthcheck with dynamic secret
Some checks failed
/ Ansible Lint (pull_request) Failing after 2m7s
2025-11-01 21:50:01 +01:00

View file

@ -13,7 +13,7 @@ services:
volumes: volumes:
- mariadb:/var/lib/mysql - mariadb:/var/lib/mysql
healthcheck: healthcheck:
test: ["CMD", "mariadb-admin", "ping", "-h", "localhost", "-uroot", "-prootpassword"] test: ["CMD", "mariadb-admin", "ping", "-h", "localhost", "-uroot", "-p{{ secret__sunders_db_root_password }}"]
interval: 10s interval: 10s
timeout: 5s timeout: 5s
start_period: 30s start_period: 30s