-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (43 loc) · 1.02 KB
/
docker-compose.yml
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
# docker-compose build
# docker-compose up --build
version: "3"
services:
rbk:
build: ./module_rbk
image: module_rbk
#volumes:
# - ./module_rbk:/tmp
ports:
- "8181:8081"
weather:
build: ./module_weather
image: module_weather
#volumes:
# - ./module_weather:/tmp
ports:
- "8182:8081"
predict:
build: ./module_predict
image: module_predict
#volumes:
# - ./module_predict:/tmp
ports:
- "8183:8081"
db:
image: nicolas/webdis
ports:
- "8184:7379"
prometheus:
image: prom/prometheus
container_name: prometheus1
volumes:
- ./module_predict/env/prometheus.yml:/etc/prometheus/prometheus.yml
ports:
- 7091:9090
grafana:
image: grafana/grafana
container_name: grafana1
ports:
- 2000:3000
env_file:
- ./module_predict/env/grafana.env