mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-21 20:31:02 +01:00
changed listmonk db parameters
This commit is contained in:
parent
94207f4a72
commit
e953937b81
@ -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
|
||||
|
@ -1,8 +1,6 @@
|
||||
|
||||
database:
|
||||
image: postgres:{{database_version}}-alpine
|
||||
ports:
|
||||
- "9432:5432"
|
||||
environment:
|
||||
- POSTGRES_PASSWORD={{database_password}}
|
||||
- POSTGRES_USER={{database_username}}
|
||||
|
Loading…
Reference in New Issue
Block a user