Skip to content

Commit

Permalink
Fix auto_update DOCKER_REGISTRY default
Browse files Browse the repository at this point in the history
Fixes #1601
Use ${DOCKER_REGISTRY:-ghcr.io/internetstandards} instead of $DOCKER_REGISTRY.
  • Loading branch information
bwbroersma committed Dec 20, 2024
1 parent 2b50952 commit 3826a26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/cron-docker/periodic/15min/auto_update
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ docker run --pull=always --network none \
--volume /var/run/docker.sock:/var/run/docker.sock \
--volume $HOME/.docker:/root/.docker \
--volume /opt/Internet.nl:/opt/Internet.nl \
--env "DOCKER_REGISTRY=$DOCKER_REGISTRY" \
"$DOCKER_REGISTRY/util:$UPSTREAM_RELEASE" \
--env "DOCKER_REGISTRY=${DOCKER_REGISTRY:-ghcr.io/internetstandards}" \
"${DOCKER_REGISTRY:-ghcr.io/internetstandards}/util:$UPSTREAM_RELEASE" \
/deploy.sh

0 comments on commit 3826a26

Please sign in to comment.