1
0
Fork 0
forked from ahurac/dotfiles
ahuarc-dotfiles/config/updateall/scripts/50-docker

13 lines
187 B
Bash
Executable file

#!/bin/bash -x
[ "$(whoami)" != root ] && exec sudo "$0" "$@"
cd /opt/docker || exit
for i in *; do (set -e
cd "$i"
docker-compose pull
docker-compose up -d
) & done
wait