Files
nginx-php-fpm/build.sh
2023-01-04 18:04:25 +02:00

17 lines
305 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 docker/${tag}/Dockerfile -t jkaninda/nginx-php-fpm:$tag .
else
echo 'Build latest'
docker build -f docker/8.2/Dockerfile -t jkaninda/nginx-php-fpm:$tag .
fi