- Why another homebridge-docker image?
- Should be simple
- Should be small (< 100MB)
- Is build on a regular basis to received updates (scheduled weekly)
Precondition for this is that you already have an existing homebridge configuration in <already-present-configuration>
.
mkdir -p <your-path-for-homebridge>
cp <already-present-configuration> <your-path-for-homebridge>/config
docker container run \
--name homebridge \
--restart always \
--mount type=bind,source=$PWD/config,target=/homebridge/config \
--net host \
-d \
jaedle/homebridge-arm32v7:latest
You should be all set! :)
- Fork the repository and setup your ci/cd-pipeline
- Adapt the plugins.txt to add new fhem plugins
- Setup your ci-cd pipeline for that
- Thanks to homebridge, it's a great project!
- Thanks to homebridge-docker. Was great inspiration how to dockerize homebridge!