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:
jorgegv 2025-03-20 12:59:09 +01:00 committed by GitHub
parent 2bd4fa2677
commit 78144ee1e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@ services:
volumes:
- ./run/db:/var/lib/mysql
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-uroot", "-pdbrootpassword"]
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-uroot", "-p${ROOT_DB_PASSWORD}"]
interval: 10s
timeout: 10s
retries: 5
retries: 5

View File

@ -32,7 +32,7 @@ IMAP_SERVER=
IMAP_PORT=
# optional: default is "Inbox"
IMAP_READ_FOLDER
IMAP_READ_FOLDER=
# optional: default is "processed"
IMAP_MOVE_FOLDER=
@ -50,4 +50,4 @@ PARSER_IMAP_IGNORE_ERROR=0
# 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():
# Argument #1 ($source) must not be empty.
PARSER_XML_MAXSIZE=50000
PARSER_XML_MAXSIZE=50000