homebridge / docker-homebridge

Homebridge Docker. HomeKit support for the impatient using Docker on x86_64, Raspberry Pi (armhf) and ARM64. Includes ffmpeg + libfdk-aac.
https://hub.docker.com/r/homebridge/homebridge/
GNU General Public License v3.0
2.57k stars 241 forks source link

Installation on LibreELEC (aarch64) fails #562

Closed bedrich-schindler closed 2 months ago

bedrich-schindler commented 2 months ago

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

NorthernMan54 commented 2 months ago

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
bedrich-schindler commented 2 months ago

It works with the latest tag. It seems aarch64 tag is no more required?

NorthernMan54 commented 2 months ago

Thanks for confirming my suspicions, that wiki article is outdated, let me update it.