Hyperion Ambilight server in a Docker Container
100K+
Hyperion Ambilight server in a Docker Container
This image is not working with the docker bridge mode. It always disconnects from kodi. If you use --network host without the Port formwarding it works. I need to check on this!!
I like to have most of my services in their own docker containers. As I could not find a fitting container I startet building one myself. This is the first image i have ever done. The goal is to provide a standalone service for the hyperion ambilight. This way I can have multiple picture sources (Kodi instances) running on different computers and cann still use the same Ambilight. So far it simply works. (I only tried it with Kodi)
My setup consists of:
SignalFlow: Kodi (Addon) --> Hyperion Server (in Docker) --> Arduino on (/dev/ttyUSB1) --> LEDs
working way (host network!)
docker run -d \
--name="Hyperion" \
-v /etc/hyperion:/etc/hyperion:ro \
--device=/dev/ttyUSB1:/dev/ttyUSB1
--network host
fred92/hyperion:latest
Correct way, notfully working (random disconnects)
docker run -d \
--name="Hyperion" \
-v /etc/hyperion:/etc/hyperion:ro \
-p 19444:19444 \
-p 19445:19445 \
--device=/dev/ttyUSB1:/dev/ttyUSB1
fred92/hyperion:latest
hyperion.config.json file in /etc/hyperion (or change the bind)Content type
Image
Digest
Size
61.4 MB
Last updated
over 5 years ago
docker pull fred92/hyperion