mirror of
https://github.com/jkaninda/laravel-php-fpm.git
synced 2025-12-06 08:59:38 +01:00
9 lines
129 B
Bash
9 lines
129 B
Bash
#!/usr/bin/env bash
|
|
if [ $# -eq 0 ]
|
|
then
|
|
tag='latest'
|
|
else
|
|
tag=$1
|
|
fi
|
|
|
|
docker build -t jkaninda/laravel-php-fpm:$tag . |