forked from ttncat/ttncat-docker-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-workshop.yml
56 lines (49 loc) · 1 KB
/
docker-compose-workshop.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
version: "3"
services:
mosquitto:
image: "eclipse-mosquitto"
networks:
- ttncat
ports:
- "2883:1883"
volumes:
- mosquitto_data:/mosquitto/data
- mosquitto_config:/mosquitto/config
- mosquitto_log:/mosquitto/log
restart: on-failure
nodered:
build: ./nodered
networks:
- ttncat
ports:
- "1880-1889:1880"
restart: on-failure
influxdb:
image: "influxdb"
networks:
- ttncat
ports:
- "8086:8086"
volumes:
- influxdb:/var/lib/influxdb
restart: on-failure
grafana:
image: "grafana/grafana"
networks:
- ttncat
ports:
- "3000-3009:3000"
volumes:
- grafana:/var/lib/grafana
environment:
- GF_INSTALL_PLUGINS=grafana-clock-panel,natel-discrete-panel,briangann-gauge-panel,vonage-status-panel,neocat-cal-heatmap-panel
restart: on-failure
volumes:
nodered:
influxdb:
grafana:
mosquitto_data:
mosquitto_config:
mosquitto_log:
networks:
ttncat: