-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
docker-compose.yaml
158 lines (145 loc) · 3.64 KB
/
docker-compose.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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
version: '3.5'
services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
ports:
- 9443:9443
volumes:
- ./portainer/data:/data
- /var/run/docker.sock:/var/run/docker.sock
- /etc/localtime:/etc/localtime:ro
restart: unless-stopped
dhcphelper:
restart: always
container_name: dhcphelper
network_mode: "host"
image: homeall/dhcphelper:latest
environment:
IP: '172.0.56.10'
TZ: America/New_York
cap_add:
- NET_ADMIN
pihole:
container_name: pihole
image: pihole/pihole:latest
environment:
- TZ=America/New_York
- WEBPASSWORD=AdminPassword!
ports:
- "53:53/tcp"
- "53:53/udp"
- "80:80/tcp"
volumes:
- './etc-pihole:/etc/pihole'
- './etc-dnsmasq.d:/etc/dnsmasq.d'
- /etc/localtime:/etc/localtime:ro
cap_add:
- NET_ADMIN
restart: always
depends_on:
- dhcphelper
networks:
backend:
ipv4_address: '172.0.56.10'
netalertx:
container_name: netalertx
image: "jokobsk/netalertx:latest"
network_mode: "host"
restart: unless-stopped
volumes:
- ./pi-alert/config:/app/config
- ./pi-alert/db:/app/db
- ./pi-alert/logs:/app/front/log
- ./etc-pihole/pihole-FTL.db:/etc/pihole/pihole-FTL.db
- ./etc-pihole/dhcp.leases:/etc/pihole/dhcp.leases
- /etc/localtime:/etc/localtime:ro
environment:
- TZ=America/New_York
- PORT=20211
depends_on:
- pihole
- unifi
mqtt:
image: eclipse-mosquitto:latest
container_name: "mqtt"
restart: always
ports:
- 1883:1883
- 9001:9001
volumes:
- ./mqtt/data:/mosquitto/data
- ./mqtt/config:/mosquitto/config
- ./mqtt/log:/mosquitto
- /etc/localtime:/etc/localtime:ro
environment:
- TZ=America/New_York
home-assistant:
image: ghcr.io/home-assistant/home-assistant:dev
container_name: "hass"
network_mode: host
restart: always
depends_on:
- mqtt
volumes:
- ./homeassistant/config:/config
- /etc/localtime:/etc/localtime:ro
environment:
- TZ=America/New_York
unifi:
image: ghcr.io/linuxserver/unifi-controller:latest
container_name: "Unifi"
network_mode: host
restart: always
volumes:
- ./unifi:/config
- /etc/localtime:/etc/localtime:ro
environment:
- TZ=America/New_York
wyze-bridge:
image: mrlt8/wyze-bridge:latest
container_name: wyze-bridge
restart: unless-stopped
ports:
# - 1935:1935 # RTMP
- 8554:8554 # RTSP
# - 8888:8888 # HLS
- 8889:8889 #WebRTC
# - 8189:8189/udp # WebRTC/ICE
- 5000:5000 # WEB-UI
environment:
- WYZE_PASSWORD=SomeAWESOMEpASWORDThatisNotPassword
- API_ID=8441sdfwvfdgrevsdvrg
- API_KEY=[ThekEY]
- IGNORE_OFFLINE=true
- QUALITY=HD60
- SUBSTREAM=True
- SNAPSHOT=RTSP
- WB_IP=192.168.10.10
- WB_AUTH=false
- ROTATE_DOOR=True
dashy:
image: lissy93/dashy:latest
container_name: Dashy
volumes:
- ./dashy:/app/user-data/
ports:
- 4000:8080
environment:
- NODE_ENV=production
restart: unless-stopped
esphome:
image: ghcr.io/esphome/esphome:latest
container_name: esphome
volumes:
- /etc/localtime:/etc/localtime:ro
- ./esphome/config:/config
ports:
- 6052:6052
restart: unless-stopped
networks:
backend:
ipam:
config:
- subnet: 172.0.56.0/24