docker-minecraft-server/minecraft-server/start-deployVanilla
2017-11-01 06:42:44 +01:00

11 lines
278 B
Bash
Executable file

#!/bin/bash
export SERVER="minecraft_server.$VANILLA_VERSION.jar"
if [ ! -e $SERVER ]; then
echo "Downloading $SERVER ..."
wget -q https://s3.amazonaws.com/Minecraft.Download/versions/$VANILLA_VERSION/$SERVER
fi
# Continue to Final Setup
exec /start-finalSetup01World $@