Merge pull request #487 from automatisch/stop-exposing-psql-redis-in-docker

chore(docker-compose): stop exposing psql & redis
This commit is contained in:
Ömer Faruk Aydın
2022-09-07 12:43:55 +03:00
committed by GitHub

View File

@@ -20,13 +20,9 @@ services:
- POSTGRES_USERNAME=automatisch_user - POSTGRES_USERNAME=automatisch_user
postgres: postgres:
image: "postgres:14.5" image: "postgres:14.5"
ports:
- "5432:5432"
environment: environment:
POSTGRES_HOST_AUTH_METHOD: trust POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_DB: automatisch POSTGRES_DB: automatisch
POSTGRES_USER: automatisch_user POSTGRES_USER: automatisch_user
redis: redis:
image: "redis:7.0.4" image: "redis:7.0.4"
ports:
- "6379:6379"