Skip to content

Commit

Permalink
docker-compose.yaml starts postgres but does not use it (#1430)
Browse files Browse the repository at this point in the history
Signed-off-by: desmax74 <[email protected]>
  • Loading branch information
desmax74 authored Oct 25, 2023
1 parent 14a79d9 commit 4e01d67
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 4e01d67

Please sign in to comment.