-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-master.yml
43 lines (43 loc) · 920 Bytes
/
docker-master.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
version: '2'
services:
frontend:
image: ptothep/frontend:latest
ports:
- '80:80'
- '443:443'
restart: always
volumes:
- /home/pirate/cert:/etc/ssl/private
influxdb:
image: arm32v7/influxdb
restart: always
ports:
- 8086:8086
volumes:
- /mnt/disk1/influxdb:/var/lib/influxdb
environment:
- INFLUXDB_HTTP_FLUX_ENABLED=true
grafana:
image: grafana/grafana
restart: always
ports:
- 3000:3000
depends_on:
- influxdb
volumes:
- /mnt/disk1/grafana:/var/lib/grafana
telegraf:
image: arm32v7/telegraf
restart: always
volumes:
- $PWD/telegraf.conf:/etc/telegraf/telegraf.conf:ro
- /var/run/docker.sock:/var/run/docker.sock
depends_on:
- influxdb
temp-stats:
image: ptothep/temp-stats:latest
ports:
- 3334:3334
restart: always
depends_on:
- influxdb