mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-17 17:56:30 +00:00
fix mariadb root password interpolation in health check configuration (#73)
* fix mariadb root password interpolation in health check configuration * fix env.example typo --------- Co-authored-by: Robert Schumann <robert@schumann.link>
This commit is contained in:
parent
2bd4fa2677
commit
78144ee1e4
@ -40,7 +40,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ./run/db:/var/lib/mysql
|
- ./run/db:/var/lib/mysql
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-uroot", "-pdbrootpassword"]
|
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-uroot", "-p${ROOT_DB_PASSWORD}"]
|
||||||
interval: 10s
|
interval: 10s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 5
|
retries: 5
|
||||||
@ -32,7 +32,7 @@ IMAP_SERVER=
|
|||||||
IMAP_PORT=
|
IMAP_PORT=
|
||||||
|
|
||||||
# optional: default is "Inbox"
|
# optional: default is "Inbox"
|
||||||
IMAP_READ_FOLDER
|
IMAP_READ_FOLDER=
|
||||||
|
|
||||||
# optional: default is "processed"
|
# optional: default is "processed"
|
||||||
IMAP_MOVE_FOLDER=
|
IMAP_MOVE_FOLDER=
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user