mirror of
https://github.com/ViViDboarder/docker-rpi-homebridge.git
synced 2024-12-22 09:07:39 +00:00
30 lines
844 B
Makefile
30 lines
844 B
Makefile
default: build
|
|
|
|
# Default target to build the image
|
|
build:
|
|
docker build -t rpi-homebridge-dev .
|
|
|
|
# Target to build and run and subsequently remove image
|
|
run: build
|
|
docker run --net=host --rm \
|
|
-p "localhost:51826:51826"
|
|
-v "$(shell pwd)/config.json:/root/.homebridge/config.json" \
|
|
-v "$(shell pwd)/plugins.txt:/root/.homebridge/plugins.txt" \
|
|
rpi-homebridge-dev
|
|
|
|
# Target to drop into an interractive shell
|
|
shell: build
|
|
docker run --net=host --rm \
|
|
-p "localhost:51826:51826"
|
|
-v "$(shell pwd)/config.json:/root/.homebridge/config.json" \
|
|
-v "$(shell pwd)/plugins.txt:/root/.homebridge/plugins.txt" \
|
|
-it rpi-homebridge-dev bash
|
|
|
|
# Tags dev image so it can be pushed
|
|
tag: build
|
|
docker tag rpi-homebridge-dev vividboarder/rpi-homebridge
|
|
|
|
# Pushes tagged image to docker hub
|
|
push: tag
|
|
docker push vividboarder/rpi-homebridge
|