Skip to content

Commit 9b816eb

Browse files
authored
Merge pull request #18 from suenot/main
Update port mappings in docker-compose.yml
2 parents f067846 + 85da2c2 commit 9b816eb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

local/docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
networks:
77
- network
88
ports:
9-
- "5432:5432"
9+
- "${DEEP_POSTGRES_PORT:-5432}:5432"
1010
restart: always
1111
command: postgres -c max_connections=200 -c log_error_verbosity=verbose -c client_min_messages=DEBUG5 -c log_min_messages=DEBUG5 -c log_min_error_statement=DEBUG5 -c log_duration=true
1212
volumes:
@@ -28,7 +28,7 @@ services:
2828
networks:
2929
- network
3030
ports:
31-
- "8080:8080"
31+
- "${DEEP_HASURA_PORT:-8080}:8080"
3232
extra_hosts: ['host.docker.internal:host-gateway']
3333
links:
3434
- "postgres:postgres"
@@ -57,7 +57,7 @@ services:
5757
- hasura
5858
restart: unless-stopped
5959
ports:
60-
- '8000:8000'
60+
- "${DEEP_HASURA_STORAGE_PORT:-8000}:8000"
6161
extra_hosts: ['host.docker.internal:host-gateway']
6262
environment:
6363
- 'DEBUG=${HASURA_STORAGE_DEBUG}'
@@ -85,8 +85,8 @@ services:
8585
- 'minio-data:/export'
8686
- 'minio-config:/root/.minio'
8787
ports:
88-
- '9000:9000'
89-
- '32765:32765'
88+
- "${DEEP_MINIO_PORT:-9000}:9000"
89+
- "${DEEP_MINIO_CONSOLE_PORT:-32765}:32765"
9090
environment:
9191
- 'MINIO_ROOT_USER=${MINIO_ROOT_USER}'
9292
- 'MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}'

0 commit comments

Comments
 (0)