From ffef0acd2ac904cff78c366b52117143a4fee07f Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Tue, 25 Feb 2025 11:53:49 +0100 Subject: [PATCH] Use ghcr.io as default registry for base image/instructions Currently the instructions and default base image still point to Docker Hub. The respective images are not up-to-date on Docker Hub. Switch to use the GitHub container registry instead. --- builder.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builder.sh b/builder.sh index e5efe61..3e8e01b 100755 --- a/builder.sh +++ b/builder.sh @@ -63,8 +63,8 @@ declare -A BUILD_MACHINE=( function print_help() { cat << EOF -Hass.io build-env for ecosystem: -docker run --rm homeassistant/{arch}-builder:latest [options] +Home Assistant ecosystem build utility: +docker run --rm ghcr.io/home-assistant/{arch}-builder:latest [options] Options: -h, --help @@ -529,7 +529,7 @@ function build_addon() { # Set defaults build things if [ -z "$build_from" ]; then bashio::log.info "No build information or from not provided. Using default base image." - build_from="homeassistant/${build_arch}-base:latest" + build_from="ghcr.io/home-assistant/${build_arch}-base:latest" fi # Additional build args