Files
nginx-php-fpm/build.sh

10 lines
128 B
Bash
Raw Normal View History

2022-07-01 18:21:34 +02:00
#!/usr/bin/env bash
if [ $# -eq 0 ]
then
tag='latest'
else
tag=$1
fi
docker build -t jkaninda/nginx-php-fpm:$tag .