Container Usage¶
For easy and quickly usage you can use the Dockerfile from Dockerhub.
docker pull nolte/minecraft-world-manager:0.1.0
For wrapping the tool, and checkout to your local FS it is required that you define some additional Container Run Parameters.
execute world check¶
docker run -it \
  --user=${UID}:$(id -g $(whoami)) \
  -w /tmp/worlds \
  -v /tmp/worlds:/tmp/worlds \
  nolte/minecraft-world-manager:0.1.0 -v worlds /tmp/worlds
Container Run Parameters¶
- --user ${UID}:$(id -g $(whoami))
- The Container User will mapped to your user and group from the Host System, see User. 
- -w /tmp/worlds
- The Container Workingdir. 
- -v /tmp/worlds:/tmp/worlds
- Some Folder mounted to your Host System, used as scanning base folder. 
- [mcworldmanager command]
- Using the mcworldmanager commandline parameters.