Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saibotk/blockmap-docker
Docker container for BlockMap to run this on a server
https://github.com/saibotk/blockmap-docker
blockmap docker java minecraft
Last synced: 15 days ago
JSON representation
Docker container for BlockMap to run this on a server
- Host: GitHub
- URL: https://github.com/saibotk/blockmap-docker
- Owner: saibotk
- Created: 2019-03-30T15:23:19.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-15T01:06:48.000Z (about 2 years ago)
- Last Synced: 2024-12-15T00:53:38.498Z (20 days ago)
- Topics: blockmap, docker, java, minecraft
- Language: Dockerfile
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BlockMap-Docker [![](https://images.microbadger.com/badges/version/saibotk/blockmap.svg)](https://hub.docker.com/r/saibotk/blockmap/) [![](https://images.microbadger.com/badges/image/saibotk/blockmap.svg)](https://hub.docker.com/r/saibotk/blockmap/) [![](https://img.shields.io/docker/pulls/saibotk/blockmap.svg?maxAge=600)](https://hub.docker.com/r/saibotk/blockmap/)
*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](https://github.com/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