docker-minecraft-server/minecraft-server/start-deployVanilla

12 lines
278 B
Plaintext
Raw Normal View History

2017-11-01 05:42:44 +00:00
#!/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 $@