photoprism/scripts/docker-build.sh

11 lines
324 B
Bash
Raw Normal View History

#!/usr/bin/env bash
if [[ -z $1 ]] || [[ -z $2 ]]; then
echo "Please provide a container image name and version" 1>&2
exit 1
else
echo "Building 'photoprism/$1:$2'...";
2019-06-07 18:35:38 +00:00
docker build --no-cache --build-arg BUILD_TAG=$2 -t photoprism/$1:latest -t photoprism/$1:$2 -f docker/$1/Dockerfile .
echo "Done"
fi