Skip to content

Commit

Permalink
Use ghcr.io as default registry for base image/instructions (#233)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
agners authored Feb 25, 2025
1 parent 0905614 commit 7db34eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 7db34eb

Please sign in to comment.