Giter Site home page Giter Site logo

johnnyzeta / docker-homebridge Goto Github PK

View Code? Open in Web Editor NEW

This project forked from homebridge/docker-homebridge

0.0 1.0 0.0 59 KB

Homebridge Docker. HomeKit support for the impatient using Docker on x86_64 or Raspberry Pi (armhf).

Home Page: https://hub.docker.com/r/oznu/homebridge/

Shell 100.00%

docker-homebridge's Introduction

GitHub release Docker Build Status Travis Docker Pulls

Docker Homebridge

This Alpine Linux based Docker image allows you to run Nfarina's Homebridge on your home network which emulates the iOS HomeKit API.

Guides

Compatibility

Homebridge requires full access to your local network to function correctly which can be achieved using the --net=host flag. Currently this image will not work when using Docker for Mac or Docker for Windows due to this and this.

Usage

docker run \
  --net=host \
  --name=homebridge \
  -e PUID=<UID> -e PGID=<GID> \
  -e TZ=<timezone> \
  -v </path/to/config>:/homebridge \
  oznu/homebridge

Raspberry Pi / ARMv6

This image will also run on a Raspberry Pi or other Docker-enabled ARMv6/7/8 devices by using the using the raspberry-pi tag:

docker run --net=host --name=homebridge oznu/homebridge:raspberry-pi

This docker image has been tested on the following Raspberry Pi models:

  • Raspberry Pi 1 Model B
  • Raspberry Pi 3 Model B
  • Raspberry Pi Zero W

See the wiki for a guide on getting Homebridge up and running on a Raspberry Pi.

Parameters

The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side.

  • --net=host - Shares host networking with container, required
  • -v /homebridge - The Homebridge config and plugin location
  • -e TZ - for timezone information e.g. -e TZ=Europe/London
  • -e PGID - for GroupID - see below for explanation
  • -e PUID - for UserID - see below for explanation

Optional Settings:

  • -e PACKAGES - Additional packages to install (comma separated, no spaces) e.g. -e PACKAGES=ffmpeg,openssh
  • -e TERMINATE_ON_ERROR=1 - If TERMINATE_ON_ERROR is set to 1 then the container will exit when the Homebridge process ends, otherwise it will be restarted.
  • -e HOMEBRIDGE_CONFIG_UI=1 - Enable and configure homebridge-config-ui-x which allows you to manage and configure Homebridge from your web browser.
  • -e HOMEBRIDGE_CONFIG_UI_PORT=8080 - The port to run homebridge-config-ui-x on. Defaults to port 8080.

User / Group Identifiers

Sometimes when using data volumes (-v flags) permissions issues can arise between the host OS and the container. We avoid this issue by allowing you to specify the user PUID and group PGID. Ensure the data volume directory on the host is owned by the same user you specify and it will "just work".

In this instance PUID=1001 and PGID=1001. To find yours use id user as below:

  $ id <dockeruser>
    uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup)

Homebridge Config

The Homebridge config file is located at </path/to/config>/config.json This file will be created the first time you run the container if it does not already exist.

Homebridge Plugins

Plugins should be defined in the </path/to/config>/package.json file in the standard NPM format. This file will be created the first time you run the container if it does not already exist.

Any plugins added to the package.json will be installed each time the container is restarted. Plugins can be uninstalled by removing the entry from the package.json and restarting the container.

You can also install plugins using yarn (an npm replacement) which will automatically update the package.json file as you add and remove modules.

You must restart the container after installing or removing plugins for the changes to take effect.

To add plugins using yarn:

docker exec <container name or id> yarn add <module name>

Example:

docker exec homebridge yarn add homebridge-dummy

To remove plugins using yarn:

docker exec <container name or id> yarn remove <module name>

Example:

docker exec homebridge yarn remove homebridge-dummy

To add plugins using startup.sh script:

The first time you run the container a script named startup.sh will be created in your mounted /homebridge volume. This script is executed everytime the container is started, before Homebridge loads, and can be used to install plugins if you don't want to edit the package.json file manually.

To add plugins using the startup.sh script just use the yarn add syntax.

#!/bin/sh

yarn add homebridge-dummy

This container does NOT require you to install plugins globally (using npm install -g or yarn global add) and doing so is NOT recommended.

Docker Compose

If you prefer to use Docker Compose:

version: '2'
services:
  homebridge:
    image: oznu/homebridge:latest  # use "raspberry-pi" instead of "latest" for arm devices
    restart: always
    network_mode: host
    environment:
      - TZ=Australia/Sydney
      - PGID=1000
      - PUID=1000
    volumes:
      - ./volumes/homebridge:/homebridge

Troubleshooting

1. Verify your config.json and package.json syntax

Many issues appear because of invalid JSON. A good way to verify your config is to use the jsonlint.com validator.

2. When running on Synology DSM set the DSM_HOSTNAME environment variable

You may need to provide the server name of your Synology NAS using the DSM_HOSTNAME environment variable to prevent hostname conflict errors. The value of the DSM_HOSTNAME environment should exactly match the server name as shown under Synology DSM Control Panel -> Info Centre -> Server name, it should contain no spaces or special characters.

docker-homebridge's People

Contributors

oznu avatar cyrussuen avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.