We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be1da4a commit b21f98eCopy full SHA for b21f98e
.gitignore
@@ -68,3 +68,4 @@ publish/
68
.idea
69
/.vs/Apache.IoTDB/FileContentIndex
70
/.vs/ProjectEvaluation
71
+/.vs/Apache.IoTDB
docker-compose.yml
@@ -4,7 +4,8 @@ services:
4
apache.iotdb.samples:
5
image: ${DOCKER_REGISTRY-}apacheiotdbsamples
6
depends_on:
7
- - iotdb
+ iotdb:
8
+ condition: service_healthy
9
links:
10
- iotdb
11
build:
@@ -17,6 +18,12 @@ services:
17
18
image: apache/iotdb:0.13.0-node
19
restart: always
20
container_name: iotdb
21
+ healthcheck:
22
+ test: ["CMD", "ls", "/iotdb/data"]
23
+ interval: 3s
24
+ timeout: 5s
25
+ retries: 30
26
+ start_period: 30s
27
ports:
28
- 6667:6667
29
networks:
0 commit comments