@@ -28,7 +28,7 @@ services:
28
28
parseable-query :
29
29
build :
30
30
context : .
31
- dockerfile : Dockerfile
31
+ dockerfile : Dockerfile.debug
32
32
platform : linux/amd64
33
33
command : [ "parseable", "s3-store" ]
34
34
ports :
@@ -45,6 +45,7 @@ services:
45
45
- P_CHECK_UPDATE=false
46
46
- P_PARQUET_COMPRESSION_ALGO=snappy
47
47
- P_MODE=query
48
+ - RUST_LOG=warn
48
49
networks :
49
50
- parseable-internal
50
51
healthcheck :
@@ -53,7 +54,8 @@ services:
53
54
timeout : 20s
54
55
retries : 5
55
56
depends_on :
56
- - minio
57
+ minio :
58
+ condition : service_healthy
57
59
deploy :
58
60
restart_policy :
59
61
condition : on-failure
@@ -63,7 +65,7 @@ services:
63
65
parseable-ingest-one :
64
66
build :
65
67
context : .
66
- dockerfile : Dockerfile
68
+ dockerfile : Dockerfile.debug
67
69
platform : linux/amd64
68
70
command : [ "parseable", "s3-store", ]
69
71
ports :
@@ -81,6 +83,7 @@ services:
81
83
- P_PARQUET_COMPRESSION_ALGO=snappy
82
84
- P_MODE=ingest
83
85
- P_INGESTOR_ENDPOINT=parseable-ingest-one:8000
86
+ - RUST_LOG=warn
84
87
networks :
85
88
- parseable-internal
86
89
healthcheck :
@@ -89,8 +92,10 @@ services:
89
92
timeout : 20s
90
93
retries : 5
91
94
depends_on :
92
- - parseable-query
93
- - minio
95
+ parseable-query :
96
+ condition : service_healthy
97
+ minio :
98
+ condition : service_healthy
94
99
deploy :
95
100
restart_policy :
96
101
condition : on-failure
@@ -121,9 +126,12 @@ services:
121
126
networks :
122
127
- parseable-internal
123
128
depends_on :
124
- - parseable-query
125
- - parseable-ingest-one
126
- - minio
129
+ parseable-query :
130
+ condition : service_healthy
131
+ parseable-ingest-one :
132
+ condition : service_healthy
133
+ minio :
134
+ condition : service_healthy
127
135
deploy :
128
136
restart_policy :
129
137
condition : on-failure
0 commit comments