1
0
Fork 0
Docker container for BlockMap to run this on a server
Find a file
Saibotk 27e6ef74f8 Merge branch 'renovate/docker.io-library-openjdk-17.x' into 'master'
Update docker.io/library/openjdk Docker tag to v17

See merge request saibotk/BlockMap-Docker!2
2021-05-17 09:19:55 +00:00
files Update for BlockMap 2.2.0 2020-08-03 22:46:35 +02:00
.gitignore Update to version 2.1.0 2020-07-09 22:52:12 +02:00
.gitlab-ci.yml Add .gitlab-ci.yml 2020-07-10 01:30:24 +02:00
Dockerfile Update docker.io/library/openjdk Docker tag to v17 2021-04-22 12:08:21 +00:00
README.md Update for BlockMap 2.2.0 2020-08-03 22:46:35 +02:00
renovate.json Add renovate.json 2020-07-30 20:20:03 +00:00

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