mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-06-02 16:59:44 +00:00
Add support for download of world in zipfile
WORLD=http://hostname/world.zip Zipfile should contain world/ directory, and optionally any required mods in mods/ as well as optionally a default server.properties file (overwritten by any env vars) Also export volumes /mods and /config, the contents of which are copied to /data/mods and /data/config. This allows shared read-only mounts for modules without affecting world.
This commit is contained in:
@@ -86,6 +86,14 @@ case $TYPE in
|
||||
|
||||
esac
|
||||
|
||||
# If supplied with a URL for a world, download it and unpack
|
||||
case "X$WORLD" in
|
||||
Xhttp*)
|
||||
wget -q -O - $WORLD > /data/world.zip
|
||||
unzip /data/world.zip
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ ! -e server.properties ]; then
|
||||
cp /tmp/server.properties .
|
||||
|
||||
@@ -193,4 +201,21 @@ if [ -n "$ICON" -a ! -e server-icon.png ]; then
|
||||
fi
|
||||
fi
|
||||
|
||||
# If any modules have been provided, copy them over
|
||||
[ -d /data/mods ] || mkdir /data/mods
|
||||
for m in /mods/*.jar
|
||||
do
|
||||
if [ -f "$m" ]; then
|
||||
cp $m /data/mods
|
||||
fi
|
||||
done
|
||||
[ -d /data/config ] || mkdir /data/config
|
||||
for c in /config/*
|
||||
do
|
||||
if [ -f "$c" ]; then
|
||||
cp -r $c /data/config
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
exec java $JVM_OPTS -jar $SERVER
|
||||
|
||||
Reference in New Issue
Block a user