From a101d6a50dbc2bca27236cf166b8098d660d5fc4 Mon Sep 17 00:00:00 2001 From: Victor Lacasse-Beaudoin Date: Thu, 28 Dec 2023 12:47:42 -0500 Subject: [PATCH] chores: cleanup docker-compose.yaml Retirer exposition de port database (issue #25) Retirer section adminer en commentaires --- docker-compose.yaml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 74aa2b5..309d27f 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -6,8 +6,6 @@ services: POSTGRES_DATABASE: "${BOTTINAGENDA_POSTGRES_DATABASE}" POSTGRES_PASSWORD: "${BOTTINAGENDA_POSTGRES_PASSWORD}" POSTGRES_USER: "${BOTTINAGENDA_POSTGRES_USER}" - ports: - - '5433:5432' volumes: - 'db-data:/var/lib/postgresql/data' restart: 'unless-stopped' @@ -35,14 +33,6 @@ services: - 'web-config:/etc/bottin-agenda' restart: 'unless-stopped' command: ['bottin-agenda', '--config', '/etc/bottin-agenda/web.yaml', 'web'] - - #adminer: - # image: adminer - # restart: always - # ports: - # - 8088:8080 - # depends_on: - # - db volumes: db-data: