forked from PredictiveMovement/digital-twin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
69 lines (64 loc) · 1.74 KB
/
docker-compose.yml
File metadata and controls
69 lines (64 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.5.1
container_name: telge-elasticsearch
environment:
- discovery.type=single-node
- xpack.security.enabled=false
- "ES_JAVA_OPTS=-Xms1g -Xmx2g"
ports:
- "9200:9200"
volumes:
- elasticsearch-data:/usr/share/elasticsearch/data
healthcheck:
test: ["CMD-SHELL", "curl -f http://localhost:9200/_cluster/health || exit 1"]
interval: 10s
timeout: 5s
retries: 30
kibana:
image: docker.elastic.co/kibana/kibana:8.5.1
container_name: telge-kibana
environment:
- ELASTICSEARCH_HOSTS=http://elasticsearch:9200
ports:
- "5601:5601"
depends_on:
elasticsearch:
condition: service_healthy
preboot:
build:
context: .
dockerfile: packages/simulator/Dockerfile
container_name: telge-preboot
environment:
- ELASTICSEARCH_URL=http://elasticsearch:9200
command: ["node", "dist/preboot.js"]
depends_on:
elasticsearch:
condition: service_healthy
restart: on-failure
simulator:
build:
context: .
dockerfile: packages/simulator/Dockerfile
args:
- TELGE_API_BASE_URL=${TELGE_API_BASE_URL}
- TELGE_API_USERNAME=${TELGE_API_USERNAME}
- TELGE_API_PASSWORD=${TELGE_API_PASSWORD}
container_name: telge-simulator
env_file:
- ./packages/simulator/.env
environment:
- PORT=4000
- ELASTICSEARCH_URL=http://elasticsearch:9200
- CACHE_DIR=/app/.cache
ports:
- "4000:4000"
volumes:
- simulator-cache:/app/.cache
depends_on:
preboot:
condition: service_completed_successfully
volumes:
elasticsearch-data:
simulator-cache: