13 lines
160 B
Bash
Executable file
13 lines
160 B
Bash
Executable file
#!/bin/sh -x
|
|
|
|
cd /opt/docker || exit
|
|
|
|
for i in *; do (set -e
|
|
cd "$i"
|
|
docker-compose pull
|
|
docker-compose up -d
|
|
) & done
|
|
|
|
docker image prune -f
|
|
|
|
wait
|