Files
nginx-php-fpm/build.sh
2024-01-06 15:22:20 +01:00

17 lines
313 B
Bash
Executable File

#!/bin/bash
if [ $# -eq 0 ]
then
tag='latest'
else
tag=$1
fi
if [ $tag != 'latest' ]
then
echo 'Build from tag'
docker build -f src/docker/${tag}/Dockerfile -t jkaninda/nginx-php-fpm:$tag .
else
echo 'Build latest'
docker build -f src/docker/8.3/Dockerfile -t jkaninda/nginx-php-fpm:$tag .
fi