-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathUltimate_Unraid_Dashboard.yml
More file actions
124 lines (118 loc) · 3.77 KB
/
Copy pathUltimate_Unraid_Dashboard.yml
File metadata and controls
124 lines (118 loc) · 3.77 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
version: "3"
services:
influxdb:
container_name: GUS-influx
image: influxdb:1.8.4
network_mode: bridge
hostname: ${HOSTNAME}
ports:
- 8086:8086
volumes:
- ${APPDATA_PATH}/GUS-influxdb:/var/lib/influxdb
restart: unless-stopped
environment:
TZ: ${TIMEZONE}
labels:
- "net.unraid.docker.icon=https://raw.githubusercontent.com/pootzko/InfluxData.Net/master/nuget-icon.png"
chronograf:
image: chronograf:alpine
container_name: GUS-chronograf
network_mode: bridge
hostname: ${HOSTNAME}
volumes:
- ${APPDATA_PATH}/GUS-chronograf:/var/lib/chronograf
ports:
- ${CHRONOGRAF_UI_PORT}:8888
depends_on:
- influxdb
labels:
- "net.unraid.docker.icon=https://external-content.duckduckgo.com/ip3/docs.influxdata.com.ico"
- "net.unraid.docker.webui=http://[IP]:[PORT:7889]/"
telegraf:
container_name: GUS-telegraf
image: telegraf:1.20.2-alpine
privileged: true
network_mode: host
hostname: ${HOSTNAME}
expose:
- 6379
volumes:
- /var/run/utmp:/var/run/utmp:ro
- /var/run/docker.sock:/var/run/docker.sock:ro
- /:/rootfs:ro
- /sys:/rootfs/sys:ro
- /etc:/rootfs/etc:ro
- /proc:/rootfs/proc:ro
- ${APPDATA_PATH}/GUS-telegraf/telegraf.conf:/etc/telegraf/telegraf.conf:ro
- /run/udev:/run/udev:ro
environment:
HOST_PROC: /rootfs/proc
HOST_SYS: /rootfs/sys
HOST_ETC: /rootfs/etc
HOST_MOUNT_PREFIX: /rootfs
TZ: ${TIMEZONE}
restart: unless-stopped
command: /bin/sh -c 'apk update && apk upgrade && apk add ipmitool && apk add smartmontools && apk add lm_sensors && telegraf'
depends_on:
- influxdb
labels:
- "net.unraid.docker.icon=https://github.com/atribe/unRAID-docker/raw/master/icons/telegraf.png"
unraidapi:
container_name: GUS-unraidapi
image: bokker/unraidapi-re:6.12 # Use tag for your version - 6.11 or 6.12
network_mode: bridge
hostname: ${HOSTNAME}
ports:
- ${UNRAID_API_UI_PORT}:80
volumes:
- ${APPDATA_PATH}/GUS-UnraidAPI:/app/config
environment:
MQTTBroker: hassio
MQTTPort: 1883
MQTTPass: pass
MQTTBaseTopic: homeassistant
KeyStorage: config
TZ: ${TIMEZONE}
restart: unless-stopped
depends_on:
- influxdb
labels:
- "net.unraid.docker.icon=https://raw.githubusercontent.com/ElectricBrainUK/UnraidAPI/master/static/iconx64.png"
- "net.unraid.docker.webui=http://[IP]:[PORT:3005]/"
varken:
container_name: GUS-varken
image: boerderij/varken
network_mode: bridge
hostname: ${HOSTNAME}
volumes:
- ${APPDATA_PATH}/GUS-varken:/config
environment:
TZ: ${TIMEZONE}
restart: unless-stopped
depends_on:
- influxdb
labels:
- "net.unraid.docker.icon=https://raw.githubusercontent.com/benderstwin/docker-templates/master/images/varken.png"
grafana:
container_name: GUS-grafana
image: grafana/grafana
network_mode: bridge
hostname: ${HOSTNAME}
ports:
- ${GRAFANA_UI_PORT}:3000
volumes:
- ${APPDATA_PATH}/GUS-grafana:/var/lib/grafana
environment:
GF_SERVER_ROOT_URL: ${GF_SERVER_ROOT_URL}
GF_SECURITY_ADMIN_PASSWORD: ${GF_SECURITY_ADMIN_PASSWORD}
TZ: ${TIMEZONE}
depends_on:
- influxdb
- telegraf
- unraidapi
- varken
restart: unless-stopped
command: grafana-cli plugins install grafana-piechart-panel && grafana-cli plugins install grafana-worldmap-panel && grafana-cli plugins install marcusolsson-json-datasource && grafana-cli plugins install dalvany-image-panel
labels:
- "net.unraid.docker.icon=https://github.com/atribe/unRAID-docker/raw/master/icons/grafana.png"
- "net.unraid.docker.webui=http://[IP]:[PORT:3000]/"