Skip to content

achton/papyruscs-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PapyrusCS container image

Build status Docker pulls

This image containerizes the Minecraft mapper PapyrusCS such that it can be used to effectively render worlds into HTML maps.

This image does not:

  • provide a mechanism for fetching your world data (you should mount it into the container)
  • do anything fancy to hand you the generated output (you should mount a volume for this too)
  • serve the generated HTML (you can use any basic HTTP container image for that)

This image does:

  • contain a recent version of the PapyrusCS source
  • hold a compiled binary built under .NET Core 3.1
  • use the latest Vanilla texture pack
  • let you pass arbitrary options to PapyrusCS via the Docker runtime
  • include a docker-compose.yaml file for easy local usage

Mounts

You should mount any worlds you need and the output folder into the container image, so they can be referenced by PapyrusCS. See examples below.

Examples

Run PapyrusCS thru Docker

$ docker run \
    -it \
    --rm \
    --name papyruscs-docker \
    -v "$(pwd)"/worlds:/app/worlds \
    -v "$(pwd)"/output:/app/output \
    achton/papyruscs-docker \
    <options>

Run PapyrusCS thru docker-compose

$ docker-compose run \
    --rm \
    papyruscs \
    <options>

Build basic Overworld map

$ docker-compose run \
    --rm \
    papyruscs \
    -w ./worlds/survival \
    -o ./output \
    --dim 0

Build map using Underground profile

$ docker-compose run \
    --rm \
    papyruscs \
    -w ./worlds/survival \
    -o ./output \
    --dim 0 \
    --profile underground

See PapyrusCS usage for a list of all available options.

MIT license

Releases

No releases published

Packages

No packages published