Skip to content

Commit 7db34eb

Browse files
authored
Use ghcr.io as default registry for base image/instructions (#233)
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.
1 parent 0905614 commit 7db34eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

builder.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ declare -A BUILD_MACHINE=(
6363

6464
function print_help() {
6565
cat << EOF
66-
Hass.io build-env for ecosystem:
67-
docker run --rm homeassistant/{arch}-builder:latest [options]
66+
Home Assistant ecosystem build utility:
67+
docker run --rm ghcr.io/home-assistant/{arch}-builder:latest [options]
6868
6969
Options:
7070
-h, --help
@@ -529,7 +529,7 @@ function build_addon() {
529529
# Set defaults build things
530530
if [ -z "$build_from" ]; then
531531
bashio::log.info "No build information or from not provided. Using default base image."
532-
build_from="homeassistant/${build_arch}-base:latest"
532+
build_from="ghcr.io/home-assistant/${build_arch}-base:latest"
533533
fi
534534

535535
# Additional build args

0 commit comments

Comments
 (0)