Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update port mappings in docker-compose.yml #18

Merged
merged 6 commits into from
May 2, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions local/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
networks:
- network
ports:
- "5432:5432"
- "${DEEP_POSTGRES_PORT:-5432}:5432"
restart: always
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
volumes:
Expand All @@ -28,7 +28,7 @@ services:
networks:
- network
ports:
- "8080:8080"
- "${DEEP_HASURA_PORT:-8080}:8080"
extra_hosts: ['host.docker.internal:host-gateway']
links:
- "postgres:postgres"
Expand Down Expand Up @@ -57,7 +57,7 @@ services:
- hasura
restart: unless-stopped
ports:
- '8000:8000'
- "${DEEP_STORAGE_PORT:-8000}:8000"
suenot marked this conversation as resolved.
Show resolved Hide resolved
extra_hosts: ['host.docker.internal:host-gateway']
environment:
- 'DEBUG=${HASURA_STORAGE_DEBUG}'
Expand Down Expand Up @@ -85,8 +85,8 @@ services:
- 'minio-data:/export'
- 'minio-config:/root/.minio'
ports:
- '9000:9000'
- '32765:32765'
- "${DEEP_MINIO_UI_PORT:-9000}:9000"
suenot marked this conversation as resolved.
Show resolved Hide resolved
- "${DEEP_MINIO_PORT:-32765}:32765"
suenot marked this conversation as resolved.
Show resolved Hide resolved
environment:
- 'MINIO_ROOT_USER=${MINIO_ROOT_USER}'
- 'MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}'
Expand Down
Loading