From 247b0df3022155915faca393833f859c3812ca93 Mon Sep 17 00:00:00 2001 From: saibotk Date: Mon, 3 Aug 2020 22:46:35 +0200 Subject: [PATCH] Update for BlockMap 2.2.0 --- Dockerfile | 4 ++-- README.md | 2 +- files/config.json | 21 +++------------------ 3 files changed, 6 insertions(+), 21 deletions(-) diff --git a/Dockerfile b/Dockerfile index cca31d9..c4b1f23 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM docker.io/library/openjdk:14-alpine -ENV VERSION=2.1.0 \ - SHA1=47de080154f4562dc1601d23b58a12e790ec9fa5 +ENV VERSION=2.2.0 \ + SHA1=bcb3a1eec9deddc77e2ed2d4df1b402fa6432beb RUN mkdir -p /opt/blockmap /input /output && \ apk add --update --no-cache su-exec binutils gettext libintl && \ diff --git a/README.md b/README.md index 86587fb..9dac65f 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ This image can be used to render a Minecraft map, by just mounting the world fol ``` sudo docker run \ - -v /MY-MINECRAFT-PATH/world:/input \ + -v /MY-MINECRAFT-PATH/world:/input:ro \ -v /MY-OUTPUT-PATH/output:/output \ --name blockmap \ saibotk/blockmap diff --git a/files/config.json b/files/config.json index 72f81d6..cd88eb0 100644 --- a/files/config.json +++ b/files/config.json @@ -1,24 +1,11 @@ { "output dir": "/output", - "hide offline players": false, "worlds": [ { "name": "Overworld", "input dir": "/input", "dimension": "OVERWORLD", - "force": false, - "pins": true - }, - { - "name": "Overworld/Oceans", - "input dir": "/input", - "dimension": "OVERWORLD", - "force": false, - "pins": true, - "render settings": { - "block colors": "OCEAN_GROUND", - "shader": "RELIEF" - } + "force": false }, { "name": "Nether", @@ -29,15 +16,13 @@ "shader": "RELIEF", "maxY": "80" }, - "force": false, - "pins": true + "force": false }, { "name": "End", "input dir": "/input", "dimension": "END", - "force": false, - "pins": true + "force": false } ] }