seedbox/update-all.sh

8 lines
146 B
Bash
Executable File

#!/bin/bash
echo "Pulling all images..."
docker-compose pull
echo "Recreating containers if required..."
docker-compose up -d
echo "Done."
exit 0