-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile.debian
42 lines (30 loc) · 1.15 KB
/
Dockerfile.debian
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
FROM oznu/homebridge:debian
WORKDIR /defaults
# milight setup
#https://github.com/dotsam/homebridge-milight
RUN npm install homebridge-milight
# npm install homebridge-platform-wemo
RUN npm install homebridge-platform-wemo
# mi-ir-remote setup
#https://github.com/Zzm317/homebridge-mi-ir-remote
RUN npm install miio homebridge-mi-ir-remote
RUN npm install miio --global
# https://github.com/YinHangCode/homebridge-mi-outlet
RUN npm install homebridge-mi-outlet
# homebridge-camera-ffmpeg setup
#https://github.com/KhaosT/homebridge-camera-ffmpeg
#RUN apk add --no-cache ffmpeg
RUN npm install homebridge-camera-ffmpeg
# homebridge-yeelight setup (not working yet)
RUN npm install homebridge-yeelight
# homebridge-videodoorbell setup
#https://github.com/Samfox2/homebridge-videodoorbell
RUN npm install homebridge-videodoorbell
# Alexa version of homebridge
# https://github.com/oznu/docker-homebridge/issues/30
RUN npm install https://github.com/NorthernMan54/homebridge --global
# homebridge-mi-aqara setup
#https://github.com/YinHangCode/homebridge-mi-aqara
RUN npm install homebridge-mi-aqara
COPY defaults/startup.sh /defaults/startup.sh
WORKDIR /homebridge