mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-18 20:26:01 +01:00
c29d27d0a6
Co-authored-by: Georg Gadinger <nilsding@nilsding.org>
8 lines
No EOL
264 B
Bash
8 lines
No EOL
264 B
Bash
#!/usr/bin/env sh
|
|
|
|
if [ ! -e "docker-compose.yml" ]; then
|
|
echo "\033[0;33mdocker-compose.yml not found! Copying example file.\033[0m"
|
|
cp docker-compose.example.yml docker-compose.yml
|
|
fi
|
|
|
|
exec docker compose -f docker-compose.yml -f docker-compose.dev.yml "$@" |