Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.3 KB

README.md

File metadata and controls

45 lines (31 loc) · 1.3 KB

Dockerized Homebridge for your RaspberryPi

Docker Pulls

  • Why another homebridge-docker image?
    • Should be simple
    • Should be small (< 100MB)
    • Is build on a regular basis to received updates (scheduled weekly)

Run it

Precondition for this is that you already have an existing homebridge configuration in <already-present-configuration>.

Copy your configuration for mounting it to the container

mkdir -p <your-path-for-homebridge>
cp <already-present-configuration> <your-path-for-homebridge>/config

Start the conatiner

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! :)

Adaption to your needs

  1. Fork the repository and setup your ci/cd-pipeline
  2. Adapt the plugins.txt to add new fhem plugins
  3. Setup your ci-cd pipeline for that

Acknowledgments