From 4e01d675b00a9d0b3331cee4299eb76881e86981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Massimiliano=20Dess=C3=AC=20-=20=28Fast=20Chauffeur=29?= Date: Wed, 25 Oct 2023 09:48:28 -0400 Subject: [PATCH] docker-compose.yaml starts postgres but does not use it (#1430) Signed-off-by: desmax74 --- docker-compose.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index d6d091d65e..069d7290fa 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,17 +15,18 @@ services: # - "7687:7687" # restart: on-failure - postgres: - image: postgres:15 - environment: - POSTGRES_USER: guac - POSTGRES_PASSWORD: guac - POSTGRES_HOST_AUTH_METHOD: trust - networks: [frontend] - ports: - - "5432:5432" - volumes: - - ./container_files/pg:/var/lib/postgresql/data + # Ent on postgres is turned down for now since we are currently only using the in memory backend + # postgres: + # image: docker.io/library/postgres:16 + # environment: + # POSTGRES_USER: guac + # POSTGRES_PASSWORD: guac + # POSTGRES_HOST_AUTH_METHOD: trust + # networks: [frontend] + # ports: + # - "5432:5432" + # volumes: + # - ./container_files/pg:/var/lib/postgresql/data nats: networks: [frontend]