1
0
Fork 0

Update for BlockMap 2.2.0

This commit is contained in:
saibotk 2020-08-03 22:46:35 +02:00
parent 37a559abfb
commit 247b0df302
No known key found for this signature in database
GPG key ID: A3299C587D5DF523
3 changed files with 6 additions and 21 deletions

View file

@ -1,7 +1,7 @@
FROM docker.io/library/openjdk:14-alpine FROM docker.io/library/openjdk:14-alpine
ENV VERSION=2.1.0 \ ENV VERSION=2.2.0 \
SHA1=47de080154f4562dc1601d23b58a12e790ec9fa5 SHA1=bcb3a1eec9deddc77e2ed2d4df1b402fa6432beb
RUN mkdir -p /opt/blockmap /input /output && \ RUN mkdir -p /opt/blockmap /input /output && \
apk add --update --no-cache su-exec binutils gettext libintl && \ apk add --update --no-cache su-exec binutils gettext libintl && \

View file

@ -22,7 +22,7 @@ This image can be used to render a Minecraft map, by just mounting the world fol
``` ```
sudo docker run \ sudo docker run \
-v /MY-MINECRAFT-PATH/world:/input \ -v /MY-MINECRAFT-PATH/world:/input:ro \
-v /MY-OUTPUT-PATH/output:/output \ -v /MY-OUTPUT-PATH/output:/output \
--name blockmap \ --name blockmap \
saibotk/blockmap saibotk/blockmap

View file

@ -1,24 +1,11 @@
{ {
"output dir": "/output", "output dir": "/output",
"hide offline players": false,
"worlds": [ "worlds": [
{ {
"name": "Overworld", "name": "Overworld",
"input dir": "/input", "input dir": "/input",
"dimension": "OVERWORLD", "dimension": "OVERWORLD",
"force": false, "force": false
"pins": true
},
{
"name": "Overworld/Oceans",
"input dir": "/input",
"dimension": "OVERWORLD",
"force": false,
"pins": true,
"render settings": {
"block colors": "OCEAN_GROUND",
"shader": "RELIEF"
}
}, },
{ {
"name": "Nether", "name": "Nether",
@ -29,15 +16,13 @@
"shader": "RELIEF", "shader": "RELIEF",
"maxY": "80" "maxY": "80"
}, },
"force": false, "force": false
"pins": true
}, },
{ {
"name": "End", "name": "End",
"input dir": "/input", "input dir": "/input",
"dimension": "END", "dimension": "END",
"force": false, "force": false
"pins": true
} }
] ]
} }