From afd5db994a928d57f2844f3571bf29a657bbfc56 Mon Sep 17 00:00:00 2001 From: Kailash Nadh Date: Sun, 27 Oct 2024 18:00:30 +0530 Subject: [PATCH] Fix incorrect image tag in docker-compose. --- config-demo.toml | 15 --------------- docker-compose.yml | 2 +- 2 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 config-demo.toml diff --git a/config-demo.toml b/config-demo.toml deleted file mode 100644 index f61a22ad..00000000 --- a/config-demo.toml +++ /dev/null @@ -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" diff --git a/docker-compose.yml b/docker-compose.yml index 25d04cf7..2dbae441 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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: