forked from patrickbusch/homebridge-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomebridge-common.sh
More file actions
53 lines (42 loc) · 796 Bytes
/
homebridge-common.sh
File metadata and controls
53 lines (42 loc) · 796 Bytes
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
ACTION=$1
if [ -z "$ACTION" ];
then
echo "usage: $0 <build|run|stop|start|remove|rerun|attach|logs>";
exit 1;
fi
_build() {
# Generate Dockerfile
echo $FROM > Dockerfile
cat Dockerfile.common >> Dockerfile
eval $SED_COMMAND
# Build
docker build --tag="patrickbusch/homebridge:$VERSION" .
}
_run() {
# Run (first time)
docker run -d -p 0.0.0.0:51826:51826 -v /etc/homebridge:/root/.homebridge --net=host --name $IMAGE_NAME patrickbusch/homebridge:$VERSION
}
_stop() {
# Stop
docker stop $IMAGE_NAME
}
_start() {
# Start (after stopping)
docker start $IMAGE_NAME
}
_remove() {
# Remove
docker rm $IMAGE_NAME
}
_rerun() {
_stop
_remove
_run
}
_attach() {
docker exec -ti $IMAGE_NAME bash
}
_logs() {
docker logs $IMAGE_NAME
}
eval _$ACTION