make tags overridable from the outside

This commit is contained in:
Jakob Ketterl 2020-02-18 21:52:52 +01:00
parent 37ffb2a02c
commit 52e517dfc3
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ set -euxo pipefail
ARCH=$(uname -m)
TAG="latest"
TAG=${TAG:-"latest"}
ARCHTAG="$TAG-$ARCH"
docker build --pull -t openwebrx-base:$ARCHTAG -f docker/Dockerfiles/Dockerfile-base .

View File

@ -4,7 +4,7 @@ set -euxo pipefail
ARCH=$(uname -m)
ALL_ARCHS="x86_64 armv7l aarch64"
TAG="latest"
TAG=${TAG:-"latest"}
ARCHTAG="$TAG-$ARCH"
IMAGES="openwebrx-rtlsdr openwebrx-sdrplay openwebrx-hackrf openwebrx-airspy openwebrx-rtlsdr-soapy openwebrx-plutosdr openwebrx-limesdr openwebrx-soapyremote openwebrx-full openwebrx"