changed listmonk db parameters

This commit is contained in:
Kevin Veen-Birkenbach 2023-12-28 08:17:07 +01:00
parent 92523bdc1b
commit a2382d355a
2 changed files with 4 additions and 6 deletions

View File

@ -14,13 +14,13 @@ admin_password = "{{listmonk_admin_password}}"
# Database.
[db]
host = "database"
host = "{{database_host}}"
port = 5432
user = "listmonk"
password = "{{listmonk_database_password}}"
user = "{{database_user}}"
password = "{{database_password}}"
# Ensure that this database has been created in Postgres.
database = "listmonk"
database = "{{database_databasename}}"
ssl_mode = "disable"
max_open = 25

View File

@ -1,8 +1,6 @@
database:
image: postgres:{{database_version}}-alpine
ports:
- "9432:5432"
environment:
- POSTGRES_PASSWORD={{database_password}}
- POSTGRES_USER={{database_username}}