-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
83 lines (75 loc) · 1.67 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
version: '3.7'
volumes:
prometheus_data: {}
grafana_data: {}
networks:
front-tier:
back-tier:
services:
evidently_service:
build:
context: .
dockerfile: server/monitoring_server/Dockerfile
depends_on:
- grafana
volumes:
- ./datasets:/app/datasets
ports:
- "8085:8085"
networks:
- back-tier
- front-tier
inference_service:
build:
context: .
dockerfile: server/model_server/Dockerfile
ports:
- "5050:5050"
networks:
- back-tier
- front-tier
depends_on:
- "evidently_service"
prometheus:
image: prom/prometheus
volumes:
- ./config/prometheus.yml:/etc/prometheus/prometheus.yml
- prometheus_data:/prometheus
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
- '--web.enable-admin-api'
ports:
- "9090:9090"
networks:
- back-tier
restart: always
grafana:
image: grafana/grafana
user: "472"
depends_on:
- prometheus
ports:
- "3000:3000"
volumes:
- ./config/grafana_datasources.yaml:/etc/grafana/provisioning/datasources/datasource.yaml:ro
- ./config/grafana_dashboards.yaml:/etc/grafana/provisioning/dashboards/dashboards.yaml:ro
- ./dashboards:/opt/grafana/dashboards
- grafana_data:/var/lib/grafana
networks:
- back-tier
- front-tier
restart: always
scenario_runner:
build:
context: .
dockerfile: scenarios/Dockerfile
ports:
- "8888:8888"
networks:
- back-tier
- front-tier
depends_on:
- "inference_service"
profiles:
- donotstart