Fix incorrect image tag in docker-compose.

This commit is contained in:
Kailash Nadh 2024-10-27 18:00:30 +05:30
parent fd04fc1c3a
commit afd5db994a
2 changed files with 1 additions and 16 deletions

View file

@ -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"

View file

@ -6,7 +6,7 @@ x-db-credentials: &db-credentials # Use the default
services:
# listmonk app
app:
image: listmonk/listmonk:test
image: listmonk/listmonk:latest
container_name: listmonk_app
restart: unless-stopped
ports: