mirror of
https://github.com/gutmensch/docker-dmarc-report.git
synced 2025-12-18 02:06:23 +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=
|
||||||
@ -50,4 +50,4 @@ PARSER_IMAP_IGNORE_ERROR=0
|
|||||||
# Increase the maximum size of the XML file. (default is 50000 bytes)
|
# Increase the maximum size of the XML file. (default is 50000 bytes)
|
||||||
# When the size exceeds the maximum, one could experience an error Uncaught ValueError: DOMDocument::loadXML():
|
# When the size exceeds the maximum, one could experience an error Uncaught ValueError: DOMDocument::loadXML():
|
||||||
# Argument #1 ($source) must not be empty.
|
# Argument #1 ($source) must not be empty.
|
||||||
PARSER_XML_MAXSIZE=50000
|
PARSER_XML_MAXSIZE=50000
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user