Update for BlockMap 2.2.0
This commit is contained in:
parent
37a559abfb
commit
247b0df302
3 changed files with 6 additions and 21 deletions
|
@ -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 && \
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue