You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.8 KiB
YAML

# [Habridge](https://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 UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
# Key used to secure communication.
- SEC_KEY=
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