diff --git a/dockerrun.sh b/dockerrun.sh new file mode 100644 index 0000000..02b8e4c --- /dev/null +++ b/dockerrun.sh @@ -0,0 +1,18 @@ +#!/bin/bash +file="MFBot_Konsole_x86_64" +if [ -f "$file" ] +then + echo "$file found." +else + echo "$file not found. Nachladen" + sh ./download.sh + +fi +cd /mfbot +screen -A -m -d -S mfbot ./$file +while [ ! -f /mfbot/logs/General.log ] ; +do + sleep 1 +done +sleep 5 +tail -f /mfbot/logs/* \ No newline at end of file