mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-03-24 02:57:47 +01:00
8 lines
232 B
Text
8 lines
232 B
Text
|
#!/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 "$@"
|