This dockerfile creates a Minecraft Overviewer container to generate minecraft maps from a minecraft world.
overviewer.cfg file to point to your world files and set the output directory and other options.# docker build --tag=overviewer .# docker run -d -v /vagrant/overviewer-data/world:/overviewer/world -v /vagrant/overviewer-data/maps/:/overviewer/maps --name="overviewer" overviewer:latest/vagrant/overviewer-data/world/overviewer/mapsNOTE
The container defaults to version 1.8, but using the -e environment flag you can specifiy which version of minecraft your world was created from:
docker run -d -v /vagrant/overviewer-data:/overviewer/world -v /vagrant/overviewer-data/maps/:/overviewer/maps -e "MCVERSION=1.8.1" --name="overviewer" overviewer:latest
There is no need to copy the texture files locally, since the container automatically downloads the version you specified if it is different from the default version.
Content type
Image
Digest
sha256:ce937055e…
Size
100.8 MB
Last updated
almost 11 years ago
docker pull benhosmer/docker-overviewer