From 639a1877975b5c547ca7a000d834f8e407696c88 Mon Sep 17 00:00:00 2001 From: Phillip Skentelbery Date: Sat, 27 Jun 2026 18:22:19 -0600 Subject: [PATCH] fix: add container_name for cross-project DNS resolution --- roles/docker/templates/listmonk-compose.yml.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/docker/templates/listmonk-compose.yml.j2 b/roles/docker/templates/listmonk-compose.yml.j2 index 7c8ae82..a7a601c 100644 --- a/roles/docker/templates/listmonk-compose.yml.j2 +++ b/roles/docker/templates/listmonk-compose.yml.j2 @@ -1,6 +1,7 @@ services: listmonk: image: listmonk/listmonk:latest + container_name: listmonk restart: unless-stopped depends_on: db: @@ -30,6 +31,7 @@ services: db: image: postgres:17-alpine + container_name: listmonk_db restart: unless-stopped environment: POSTGRES_USER: listmonk