mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-11-15 00:27:08 +00:00
11 lines
278 B
Bash
Executable file
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 $@
|