mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-14 18:12:47 +00:00
41 lines
1.8 KiB
YAML
41 lines
1.8 KiB
YAML
# [Habridge](http://bwssystems.com/#/habridge) emulates Philips Hue API to other
|
|
# home automation gateways such as an Amazon Echo/Dot Gen 1 (gen 2 has issues
|
|
# discovering ha-bridge) or other systems that support Philips Hue. The Bridge
|
|
# handles basic commands such as 'On', 'Off' and 'brightness' commands of the
|
|
# hue protocol. This bridge can control most devices that have a distinct API.
|
|
# In the cases of systems that require authorization and/or have APIs that
|
|
# cannot be handled in the current method, a module may need to be built. The
|
|
# Harmony Hub is such a module and so is the Nest module. The Bridge has helpers
|
|
# to build devices for the gateway for the Logitech Harmony Hub, Vera, Vera Lite
|
|
# or Vera Edge, Nest, Somfy Tahoma, Home Assistant, Domoticz, MQTT, HAL, Fibaro,
|
|
# HomeWizard, LIFX, OpenHAB, FHEM, Broadlink and the ability to proxy all of
|
|
# your real Hue bridges behind this bridge. This bridge was built to help put
|
|
# the Internet of Things together. For more information about how to use this
|
|
# software have a look at their Wiki [https://github.com/bwssytems/ha-
|
|
# bridge/wiki](https://github.com/bwssytems/ha-bridge/wiki)
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
habridge:
|
|
image: ghcr.io/linuxserver/habridge
|
|
container_name: habridge
|
|
environment:
|
|
# for GroupID
|
|
- PUID=${PUID:-1024}
|
|
# for UserID
|
|
- PGID=${PGID:-100}
|
|
# Key used to secure communication.
|
|
- SEC_KEY=<Your Key To Encrypt Security Data>
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Where HABridge stores config files and data.
|
|
- ${BASEDIR:-/volume1/docker}/habridge/config:/config
|
|
ports:
|
|
# WebUI
|
|
- 8080:8080
|
|
# HABridge communication port.
|
|
- 50000:50000
|
|
restart: unless-stopped
|