mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
12 lines
278 B
Plaintext
12 lines
278 B
Plaintext
|
#!/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 $@
|