Docker Image to Run Minecraft Overviewer. Overviewer is a render that produces a render of a Minecraft world.
The goal of this image is to easily run Minecraft Overviewer. Now you don't need to worry about the dependencies.
docker pull mide/minecraft-overviewer:latest
docker run \
--rm \
-e MINECRAFT_VERSION="1.14" \
-v /home/user/minecraft/:/home/minecraft/server/:ro \
-v /srv/http/minecraft/:/home/minecraft/render/:rw \
mide/minecraft-overviewer:latest
MINECRAFT_VERSION
Set to the version of Minecraft the world is based from (Like1.14
). Used for textures.
-
ADDITIONAL_ARGS
Default Value: null. Set to contain any additional arguments you'd like to pass intooverviewer.py
. -
CONFIG_LOCATION
Default Value:/home/minecraft/config.py
. Set to a different path to override the provided configuration. This only makes sense if you have a different configuration in a volume. -
RENDER_MAP
Default Value:true
. Set tofalse
if you do not want to render the map. This is useful for POI only-updates. -
RENDER_POI
Default Value:true
. Set tofalse
to disable rendering of POI (points of interest).