-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
76 lines (66 loc) · 1.29 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
version: '3'
services:
rabbit:
image: rabbitmq:3-management
prometheus:
build:
context: ./prometheus
monitoring:
build:
context: ./monitoring
restart: on-failure
coordinator:
build:
context: ./coordinator
restart: on-failure
boiler-temp:
build:
context: ./sensors
environment:
NAME: "boiler-temp"
FREQ: "5"
MAX: "450.0"
MIN: "250.0"
STEP: "9.0"
restart: on-failure
boiler-pressure:
build:
context: ./sensors
environment:
NAME: "boiler-pressure"
FREQ: "5"
MAX: "15"
MIN: "3"
STEP: "0.3"
restart: on-failure
boiler-current:
build:
context: ./sensors
environment:
NAME: "boiler-current"
FREQ: "5"
MAX: "50.0"
MIN: "20.0"
STEP: "1.0"
restart: on-failure
boiler-mixer:
build:
context: ./sensors
environment:
NAME: "boiler-mixer"
FREQ: "5"
MAX: "150.0"
MIN: "90.0"
STEP: "3.0"
restart: on-failure
rabbit-exporter:
image: kbudde/rabbitmq-exporter
network_mode: "service:rabbit"
restart: on-failure
grafana:
image: eugenebad/dist-grafana:v1
ports:
- "3000:3000"
restart: on-failure
node-exporter:
image: prom/node-exporter:latest