delete bash script

This commit is contained in:
Lio Young 2021-07-08 13:48:43 +02:00
parent 1c540e2257
commit e2584bada0
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
#!/bin/bash
echo "Running Script..."
if [ "$1" == "run" ]; then
echo "Starting Thaldrin..."
docker-compose up -d
exit 0
elif [ "$1" == "build" ]; then
echo "Building Thaldrin..."
docker-compose build
exit 0
elif [ "$1" == "stop" ]; then
echo "Stopping Thaldrin..."
docker-compose down
exit 0
fi
exit 1