Files
docker-scripts/deploy.sh
2017-09-26 12:52:39 +02:00

15 lines
322 B
Bash
Executable File

#!/bin/bash -e
for f in $*; do
f=${f%.yaml}
if ! test -e ${f}.yaml; then
echo "ERROR: no file ${f}.yaml" 1>&2
exit 1
fi
echo "... deploying $f"
for d in $(sed -n 's/^ *source: *//p' ${f}.yaml); do
test -e $d || mkdir -p $d
done
docker stack deploy --compose-file ${f}.yaml ${f}
done