-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
151 lines (138 loc) · 3.39 KB
/
docker-compose.yaml
File metadata and controls
151 lines (138 loc) · 3.39 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
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
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=[REDACTED]
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'
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:latest
container_name: "hass"
network_mode: host
restart: always
depends_on:
- mqtt
- matter-server
volumes:
- ./homeassistant/config:/config
- /etc/localtime:/etc/localtime:ro
environment:
- TZ=America/New_York
matter-server:
container_name: matter-server
image: ghcr.io/home-assistant-libs/python-matter-server:stable
restart: unless-stopped
security_opt:
- apparmor=unconfined
volumes:
- ./matter/data:/data
- /run/dbus:/run/dbus:ro
network_mode: host
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_EMAIL=[REDACTED]
- WYZE_PASSWORD=[REDACTED]
- API_ID=[REDACTED]
- API_KEY=[REDACTED]
- 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