Lightweight, multi-architecture Docker image for Hyperion NG — open-source ambient lighting software.
- Multi-architecture —
amd64,arm64,arm/v7(Raspberry Pi) - Minimal footprint — Debian slim base, build deps purged after install
- Auto-updated — GitHub Actions checks daily for new stable Hyperion releases and rebuilds the image automatically
- GHCR — Published to GitHub Container Registry
docker run -d \
--name hyperion \
--network host \
-e TZ=Europe/Paris \
-v hyperion_config:/config \
ghcr.io/tbringuier/hyperionng-dockerized:latestOr with Docker Compose:
docker compose up -d| Variable | Default | Description |
|---|---|---|
TZ |
UTC |
Container timezone |
HYPERION_USERDATA_DIR |
/config |
Path to Hyperion userdata inside the container |
| Port | Description |
|---|---|
8090 |
Web UI / JSON API |
8092 |
JSON API (WebSocket) |
19444 |
Protobuf |
19445 |
Flatbuffers |
When using
network_mode: host(recommended), no port mapping is needed.
| Path | Description |
|---|---|
/config |
Persistent Hyperion configuration |
To pass through a V4L2 video capture device:
devices:
- /dev/video0:/dev/video0docker build -t hyperionng .