Docker: Fix build tag variable name in entrypoint.sh scripts
This commit is contained in:
parent
993fc99ee1
commit
8f424a91d5
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
DOCKER_ARCH=${DOCKER_ARCH:-arch}
|
||||
DOCKER_ENV=${DOCKER_ENV:-unknown}
|
||||
|
||||
echo "image: $DOCKER_ARCH-$DOCKER_ENV $BUILD_TAG"
|
||||
echo "image: $DOCKER_ARCH-$DOCKER_ENV $DOCKER_TAG"
|
||||
|
||||
if [[ $(id -u) == "0" ]]; then
|
||||
echo "started as root"
|
||||
|
|
2
scripts/dist/entrypoint.sh
vendored
2
scripts/dist/entrypoint.sh
vendored
|
@ -3,7 +3,7 @@
|
|||
DOCKER_ARCH=${DOCKER_ARCH:-arch}
|
||||
DOCKER_ENV=${DOCKER_ENV:-unknown}
|
||||
|
||||
echo "image: $DOCKER_ARCH-$DOCKER_ENV $BUILD_TAG"
|
||||
echo "image: $DOCKER_ARCH-$DOCKER_ENV $DOCKER_TAG"
|
||||
|
||||
if [[ $(id -u) == "0" ]]; then
|
||||
echo "started as root"
|
||||
|
|
Loading…
Reference in a new issue