git-subtree-dir: seatmap-webapi git-subtree-split: 02d4bf7404b8fcb788502ca45c813946b6c4f5b9
11 lines
111 B
Bash
Executable File
11 lines
111 B
Bash
Executable File
#!/bin/bash
|
|
FILES=*
|
|
|
|
for f in $FILES
|
|
do
|
|
if [[ -d "$f" ]]
|
|
then
|
|
docker build "$f" -t "php-crud-api:$f"
|
|
fi
|
|
done
|