-
Notifications
You must be signed in to change notification settings - Fork 4
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
Conversation
local/docker-compose.yml
Outdated
@@ -6,7 +6,7 @@ services: | |||
networks: | |||
- network | |||
ports: | |||
- "5432:5432" | |||
- "${DEEP_POSTGRES_PORT_HOST:-5432}:${DEEP_POSTGRES_PORT:-5432}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- "${DEEP_POSTGRES_PORT_HOST:-5432}:${DEEP_POSTGRES_PORT:-5432}" | |
- "${DEEP_POSTGRES_PORT:-5432}:-5432" |
local/docker-compose.yml
Outdated
@@ -28,7 +28,7 @@ services: | |||
networks: | |||
- network | |||
ports: | |||
- "8080:8080" | |||
- "${DEEP_HASURA_PORT_HOST:-8080}:${DEEP_HASURA_PORT:-8080}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- "${DEEP_HASURA_PORT_HOST:-8080}:${DEEP_HASURA_PORT:-8080}" | |
- "${DEEP_HASURA_PORT:-8080}:8080" |
local/docker-compose.yml
Outdated
@@ -57,7 +57,7 @@ services: | |||
- hasura | |||
restart: unless-stopped | |||
ports: | |||
- '8000:8000' | |||
- "${DEEP_STORAGE_PORT_HOST:-8000}:${DEEP_STORAGE_PORT:-8000}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- "${DEEP_STORAGE_PORT_HOST:-8000}:${DEEP_STORAGE_PORT:-8000}" | |
- "${DEEP_HASURA_STORAGE_PORT:-8000}:-8000" |
local/docker-compose.yml
Outdated
- '9000:9000' | ||
- '32765:32765' | ||
- "${DEEP_MINIO_UI_PORT_HOST:-9000}:${DEEP_MINIO_UI_PORT:-9000}" | ||
- "${DEEP_MINIO_PORT_HOST:-32765}:${DEEP_MINIO_PORT:-32765}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- "${DEEP_MINIO_PORT_HOST:-32765}:${DEEP_MINIO_PORT:-32765}" | |
- "${DEEP_MINIO_PORT:-32765}:32765" |
local/docker-compose.yml
Outdated
@@ -85,8 +85,8 @@ services: | |||
- 'minio-data:/export' | |||
- 'minio-config:/root/.minio' | |||
ports: | |||
- '9000:9000' | |||
- '32765:32765' | |||
- "${DEEP_MINIO_UI_PORT_HOST:-9000}:${DEEP_MINIO_UI_PORT:-9000}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- "${DEEP_MINIO_UI_PORT_HOST:-9000}:${DEEP_MINIO_UI_PORT:-9000}" | |
- "${DEEP_MINIO_UI_PORT:-9000}:9000" |
…ocker-compose.yml
Co-authored-by: Konstantin Dyachenko <[email protected]>
Co-authored-by: Konstantin Dyachenko <[email protected]>
Co-authored-by: Konstantin Dyachenko <[email protected]>
No description provided.