From c3a626159ee98899dd8f3c722001df63882e2445 Mon Sep 17 00:00:00 2001 From: arcbjorn Date: Fri, 28 Oct 2022 09:27:04 -0300 Subject: [PATCH] fix(Umami): container names --- umami/docker-compose.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/umami/docker-compose.yaml b/umami/docker-compose.yaml index ef07757..008b0dc 100644 --- a/umami/docker-compose.yaml +++ b/umami/docker-compose.yaml @@ -3,6 +3,8 @@ version: "3" services: umami: image: ghcr.io/mikecao/umami:postgresql-latest + container_name: umami + ports: - "127.0.0.1:${UMAMI_PORT}:3000" env_file: @@ -10,8 +12,11 @@ services: depends_on: - umami_db restart: always + umami_db: image: postgres:12-alpine + container_name: umami_db + env_file: - ../stack.env volumes: