https://github.com/birkhofflee/docker-chunky
Docker image of Chunky
https://github.com/birkhofflee/docker-chunky
chunky docker minecraft
Last synced: about 2 months ago
JSON representation
Docker image of Chunky
- Host: GitHub
- URL: https://github.com/birkhofflee/docker-chunky
- Owner: BirkhoffLee
- License: mit
- Created: 2017-06-19T18:48:09.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-19T23:17:08.000Z (almost 8 years ago)
- Last Synced: 2025-02-10T10:22:35.801Z (4 months ago)
- Topics: chunky, docker, minecraft
- Language: Shell
- Size: 377 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-chunky [](https://microbadger.com/images/birkhofflee/docker-chunky) [](https://microbadger.com/images/birkhofflee/docker-chunky)
Docker image of Chunky# Usage
You must specify the Minecraft version at startup, if not specified, Minecraft version `1.11.2` is set by default.The trailing arguments (in this case, `--version`), is added to the Chunky launcher arguments. The data (`CHUNKY_HOME`) directory is located at the `/data` inside of the container. You can use volumes to mount your data into it.
```bash
$ docker run -it -e "MINECRAFT_VERSION=1.11.2" -v $(pwd)/chunkydata:/data birkhofflee/docker-chunky --version
```You can also adjust the JVM settings by adding `-e "JAVA_ARGS=-Xmx10G"`.
Here's an example for how to render a map:
```bash
$ ... put some scene data into ./chunkydata/scenes ...
$ docker run -it -e "MINECRAFT_VERSION=1.11.2" -v $(pwd)/chunkydata:/data birkhofflee/docker-chunky -render some-scene -threads 24 -texture /data/texture_pack.zip
```# Proof of Concept
