File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ services:
6
6
networks :
7
7
- network
8
8
ports :
9
- - " 5432:5432"
9
+ - " ${DEEP_POSTGRES_PORT:- 5432} :5432"
10
10
restart : always
11
11
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
12
12
volumes :
@@ -28,7 +28,7 @@ services:
28
28
networks :
29
29
- network
30
30
ports :
31
- - " 8080:8080"
31
+ - " ${DEEP_HASURA_PORT:- 8080} :8080"
32
32
extra_hosts : ['host.docker.internal:host-gateway']
33
33
links :
34
34
- " postgres:postgres"
@@ -57,7 +57,7 @@ services:
57
57
- hasura
58
58
restart : unless-stopped
59
59
ports :
60
- - ' 8000:8000'
60
+ - " ${DEEP_HASURA_STORAGE_PORT:- 8000} :8000"
61
61
extra_hosts : ['host.docker.internal:host-gateway']
62
62
environment :
63
63
- ' DEBUG=${HASURA_STORAGE_DEBUG}'
@@ -85,8 +85,8 @@ services:
85
85
- ' minio-data:/export'
86
86
- ' minio-config:/root/.minio'
87
87
ports :
88
- - ' 9000:9000'
89
- - ' 32765:32765'
88
+ - " ${DEEP_MINIO_PORT:- 9000} :9000"
89
+ - " ${DEEP_MINIO_CONSOLE_PORT:- 32765} :32765"
90
90
environment :
91
91
- ' MINIO_ROOT_USER=${MINIO_ROOT_USER}'
92
92
- ' MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}'
You can’t perform that action at this time.
0 commit comments