mirror of
https://github.com/knadh/listmonk.git
synced 2024-12-27 01:14:31 +08:00
Fix incorrect image tag in docker-compose.
This commit is contained in:
parent
fd04fc1c3a
commit
afd5db994a
2 changed files with 1 additions and 16 deletions
|
@ -1,15 +0,0 @@
|
||||||
[app]
|
|
||||||
# Interface and port where the app will run its webserver.
|
|
||||||
address = "0.0.0.0:9000"
|
|
||||||
|
|
||||||
# Database.
|
|
||||||
[db]
|
|
||||||
host = "demo-db"
|
|
||||||
port = 5432
|
|
||||||
user = "listmonk"
|
|
||||||
password = "listmonk"
|
|
||||||
database = "listmonk"
|
|
||||||
ssl_mode = "disable"
|
|
||||||
max_open = 25
|
|
||||||
max_idle = 25
|
|
||||||
max_lifetime = "300s"
|
|
|
@ -6,7 +6,7 @@ x-db-credentials: &db-credentials # Use the default
|
||||||
services:
|
services:
|
||||||
# listmonk app
|
# listmonk app
|
||||||
app:
|
app:
|
||||||
image: listmonk/listmonk:test
|
image: listmonk/listmonk:latest
|
||||||
container_name: listmonk_app
|
container_name: listmonk_app
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
|
|
Loading…
Reference in a new issue