retrospring/bin/docker
2023-08-23 20:40:39 +02:00

8 lines
No EOL
232 B
Bash

#!/usr/bin/env sh
if [ ! -e "docker-compose.yml" ]; then
echo "\033[0;31mdocker-compose.yml not found! Please create the file from the example file before continuing.\033[0m"
exit 1
fi
docker compose -f docker-compose.yml "$@"