docker-homebridge
docker-homebridge copied to clipboard
Installation on LibreELEC (aarch64) fails
Describe The Bug
If I follow guide from https://github.com/homebridge/docker-homebridge/wiki/Homebridge-on-LibreELEC
docker run -d --restart=always --net=host \
--name=homebridge \
-v /storage/homebridge:/homebridge \
-e HOMEBRIDGE_CONFIG_UI=1 \
-e HOMEBRIDGE_CONFIG_UI_PORT=8581 \
homebridge/homebridge:aarch64
it ends up with:
Unable to find image 'homebridge/homebridge:aarch64' locally
docker: Error response from daemon: manifest for homebridge/homebridge:aarch64 not found: manifest unknown: manifest unknown.
See 'docker run --help'.
Docker Config
docker run -d --restart=always --net=host \
--name=homebridge \
-v /storage/homebridge:/homebridge \
-e HOMEBRIDGE_CONFIG_UI=1 \
-e HOMEBRIDGE_CONFIG_UI_PORT=8581 \
homebridge/homebridge:aarch64
Logs
Unable to find image 'homebridge/homebridge:aarch64' locally
docker: Error response from daemon: manifest for homebridge/homebridge:aarch64 not found: manifest unknown: manifest unknown.
See 'docker run --help'.
Host Operating System
Other (specify in description)
Host Architecture
aarch64 / arm64
Looks like that wiki article is a bit broken, as those docker tags are not listed on the docker registry
https://hub.docker.com/r/homebridge/homebridge/tags
Can you try with the latest tag ?
ie
docker run -d --restart=always --net=host \
--name=homebridge \
-v /storage/homebridge:/homebridge \
-e HOMEBRIDGE_CONFIG_UI=1 \
-e HOMEBRIDGE_CONFIG_UI_PORT=8581 \
homebridge/homebridge:latest
It works with the latest tag. It seems aarch64 tag is no more required?
Thanks for confirming my suspicions, that wiki article is outdated, let me update it.