diff options
-rwxr-xr-x | run.sh | 5 | ||||
-rwxr-xr-x | setup.sh | 4 |
2 files changed, 8 insertions, 1 deletions
@@ -0,0 +1,5 @@ +#!/usr/bin/env sh + +set -eu + +docker-compose -f $1 up -d @@ -120,7 +120,7 @@ run_now=${run_now:-"y"} if [ $run_now == "y" ]; then echo "Running the server..." echo "This is going to take a while..." - docker-compose -f $filename up -d + ./run.sh $filename else echo "Perfect! You can run the server later using the following command:" echo "" @@ -135,6 +135,8 @@ fi # Cleaning up... # ============================================================================================ +cp setup.sh $install_location + printf "\033c" echo "========================================================" |