Skip to content

Docker container for BlockMap to run this on a server

Notifications You must be signed in to change notification settings

saibotk/BlockMap-Docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BlockMap-Docker

Available tags:

  • latest - most up-to-date version (can be unstable!).
  • x.x.x - a specific version.

What is BlockMap?

BlockMap is a Mincraft map renderer written in Java, which is able to render 1.13+ worlds.
Go check out the amazing project for yourself at Minecraft-Technik-Wiki/BlockMap.

What does this container do?

This image can be used to render a Minecraft map, by just mounting the world folder and an output folder. The container will execute the render tasks and after that it will stop. If you want to automatically render maps every now and then, you can achieve this by using a cronjob or systemd etc..

Usage

Quick Start

Please replace the paths on the left side with your own!
They should all point to a directory, where the region files are located (files like r.0.0.mca) or if you want all data to be processed, the parent folder (usually where the 'region') folder lives in.

sudo docker run \
	-v /MY-MINECRAFT-PATH/world:/input:ro \
	-v /MY-OUTPUT-PATH/output:/output \
	--name blockmap \
	saibotk/blockmap

Customization

Coming soon