-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome-automation.yaml
97 lines (83 loc) · 2.74 KB
/
home-automation.yaml
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
version: '3.3'
services:
grafana:
container_name: grafana
network_mode: host
restart: unless-stopped
volumes:
- '/mnt/Storage6TB/appsmount/grafana:/var/lib/grafana'
environment:
- 'GF_SERVER_HTTP_PORT=9700'
image: grafana/grafana
logging:
driver: "gelf"
options:
gelf-address: "udp://mirai.eirikzlab.local:12201"
esphome:
container_name: kiba
environment:
- ESPHOME_DASHBOARD_USE_PING="true"
network_mode: host
restart: unless-stopped
volumes:
- '/mnt/Storage6TB/appsmount/esphome:/config'
image: esphome/esphome
logging:
driver: "gelf"
options:
gelf-address: "udp://mirai.eirikzlab.local:12201"
mosquitto:
container_name: shino
network_mode: host
volumes:
- /mnt/Storage6TB/appsmount/mosquitto/mosquitto.conf:/mosquitto/config/mosquitto.conf
- /mnt/Storage6TB/appsmount/mosquitto/mosquitto.passwd:/mosquitto/config/mosquitto.passwd
- /mnt/Storage6TB/appsmount/mosquitto/log/mosquitto.log:/mosquitto/log/mosquitto.log
- /mnt/Storage6TB/appsmount/mosquitto/data:/mosquitto/data
- /mnt/Storage6TB/appsmount/mosquitto/mosquitto.pid:/var/run/mosquitto.pid
restart: unless-stopped
image: eclipse-mosquitto
logging:
driver: "gelf"
options:
gelf-address: "udp://mirai.eirikzlab.local:12201"
tasmoadmin:
container_name: choji
network_mode: host
volumes:
- /mnt/Storage6TB/appsmount/tasmoadmin:/data
restart: unless-stopped
image: raymondmm/tasmoadmin
logging:
driver: "gelf"
options:
gelf-address: "udp://mirai.eirikzlab.local:12201"
influxdb:
container_name: tenten
network_mode: host
volumes:
- '/mnt/Storage6TB/appsmount/influxdb:/var/lib/influxdb'
environment:
- INFLUXDB_DB=${INFLUXDBDBNAME}
- INFLUXDB_HTTP_AUTH_ENABLED=true
- INFLUXDB_ADMIN_USER=${INFLUXDBADMINUSER}
- INFLUXDB_ADMIN_PASSWORD=$INFLUXDBADMINPASSWORD}
restart: unless-stopped
image: influxdb
logging:
driver: "gelf"
options:
gelf-address: "udp://mirai.eirikzlab.local:12201"
neji:
container_name: neji
volumes:
- '/mnt/Storage6TB/appsmount/neji:/app/data'
network_mode: host
environment:
- TZ=Europe/Oslo
restart: unless-stopped
image: 'koenkk/zigbee2mqtt:latest-dev'
logging:
driver: "gelf"
options:
gelf-address: "udp://mirai.eirikzlab.local:12201"