docker-homebridge icon indicating copy to clipboard operation
docker-homebridge copied to clipboard

Installation on LibreELEC (aarch64) fails

Open bedrich-schindler opened this issue 10 months ago • 3 comments

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

bedrich-schindler avatar Apr 17 '24 15:04 bedrich-schindler

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

NorthernMan54 avatar Apr 17 '24 17:04 NorthernMan54

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

bedrich-schindler avatar Apr 19 '24 08:04 bedrich-schindler

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

NorthernMan54 avatar Apr 19 '24 18:04 NorthernMan54