All Projects → mide → minecraft-overviewer

mide / minecraft-overviewer

Licence: MIT License
Docker Image to Run Minecraft Overviewer

Programming Languages

python
139335 projects - #7 most used programming language
Dockerfile
14818 projects
shell
77523 projects
Makefile
30231 projects

Projects that are alternatives of or similar to minecraft-overviewer

MineRender
Quick, Easy, Interactive 3D/2D Renders of Minecraft
Stars: ✭ 76 (+26.67%)
Mutual labels:  minecraft, render
anticope.ml
Welcome to the AntiCope Website! Here you can find a list of free and open-source Meteor Client addons as well as other client-side Fabric Minecraft mods.
Stars: ✭ 39 (-35%)
Mutual labels:  minecraft
react-smart-key
Pass anything as key without re-renders
Stars: ✭ 17 (-71.67%)
Mutual labels:  render
minecraft-blocks-render
2D sprite to isometric icon
Stars: ✭ 24 (-60%)
Mutual labels:  render
engine
An easy-to-use, cross-platform, graphics render library written entirely in rust
Stars: ✭ 26 (-56.67%)
Mutual labels:  render
elixir cluster
Distributed Elixir Cluster on Render with libcluster and Mix Releases
Stars: ✭ 15 (-75%)
Mutual labels:  render
django-renderpdf
📄 A Django app to render django templates as PDF files.
Stars: ✭ 37 (-38.33%)
Mutual labels:  render
FrogCraft-Rebirth
A standalone rewrite of FrogCraft, an IC2 Addon with theme of chemical industry, starting from scratch.
Stars: ✭ 27 (-55%)
Mutual labels:  minecraft
roboserver
Control OpenComputers robots without writing any code!
Stars: ✭ 52 (-13.33%)
Mutual labels:  minecraft
echo-template
golang template for echo framework!
Stars: ✭ 39 (-35%)
Mutual labels:  render
BBearEditor-2.0
My own 3D engine & editor in order to learn graphics algorithms and game engine architecture.
Stars: ✭ 32 (-46.67%)
Mutual labels:  render
l2cu
L²CU: LDraw Linux Command line Utility
Stars: ✭ 14 (-76.67%)
Mutual labels:  render
urlbox-screenshots-node
Capture website thumbnails using the urlbox.io screenshot as a service API in node
Stars: ✭ 14 (-76.67%)
Mutual labels:  render
phoenix example
An example Phoenix app with one-click deployments to different cloud services.
Stars: ✭ 62 (+3.33%)
Mutual labels:  render
minecraft-lambda-function
AWS Lambda function for managing Minecraft server
Stars: ✭ 37 (-38.33%)
Mutual labels:  minecraft
RayTracing
Realtime GPU Path tracer based on OpenCL and OpenGL
Stars: ✭ 120 (+100%)
Mutual labels:  render
PinFloyd
MapKit annotations clustering for iOS
Stars: ✭ 29 (-51.67%)
Mutual labels:  render
go-gin-web-server
Deploy Go Gin on Render
Stars: ✭ 23 (-61.67%)
Mutual labels:  render
TotalEconomy
All in one economy plugin for Minecraft and Sponge.
Stars: ✭ 32 (-46.67%)
Mutual labels:  minecraft
Allomancy
Brandon Sanderson's Allomancy, now in Minecraft
Stars: ✭ 18 (-70%)
Mutual labels:  minecraft

Minecraft Overviewer Docker Image

Docker Docker GitHub license GitHub issues

Docker Image to Run Minecraft Overviewer. Overviewer is a render that produces a render of a Minecraft world. The goal of this image is to easily run the Overviewer project without having to worry about dependencies, and to provide sane default configurations.

⚠️ This project is not official nor affiliated with the wonderful Minecraft Overviewer project.

This project's code is hosted on GitHub, and the resulting Docker image is hosted on Docker Hub. Feel free to open an issue on GitHub if you're having problems.

Running Minecraft Overviewer

docker pull mide/minecraft-overviewer:latest
docker run \
  --rm \
  -e MINECRAFT_VERSION="1.17" \
  -v /home/user/minecraft/:/home/minecraft/server/:ro \
  -v /srv/http/minecraft/:/home/minecraft/render/:rw \
  mide/minecraft-overviewer:latest

Note: The latest Docker tag is rebuilt daily. If there are changes to the upstream project, it may take up to 24 hours for the new image to contain them.

Environment Variables

Required

  • MINECRAFT_VERSION Set to the version of Minecraft the world is based from (Like 1.17). Used for textures. You can also use the special version latest or latest_snapshot to just use the latest version (stable or snapshot, respectively).

Optional

  • ADDITIONAL_ARGS Default Value: null. Set to contain any additional arguments you'd like to pass into overviewer.py.

  • ADDITIONAL_ARGS_POI Default Value: null. Set to contain any additional arguments you'd like to pass into overviewer.py --genpoi.

  • CONFIG_LOCATION Default Value: /home/minecraft/config.py. Set to a different path to override the provided configuration. This only makes sense if you have a different configuration in a volume.

  • RENDER_MAP Default Value: true. Set to false if you do not want to render the map. This is useful for POI only-updates.

  • RENDER_POI Default Value: true. Set to false to disable rendering of POI (points of interest).

  • RENDER_SIGNS_FILTER Default Value: -- RENDER --. Only signs with this case-sensitive string will be included in the POI (points of interest) render. Useful for allowing hidden bases or decluttering the render. Set to an empty string ("") to render all signs.

  • RENDER_SIGNS_HIDE_FILTER Default Value: false. Set to true to prevent the sign filter string (Set via RENDER_SIGNS_FILTER) from appearing in the render. For example, if only signs with -- RENDER -- are displayed, the string -- RENDER -- would be hidden from the render.

  • RENDER_SIGNS_JOINER Default Value: <br />. Set to the string that should be used to join the lines on the sign while rendering. Value of "<br />" will make each in-game line it's own line on the render. A value of " " will make all the in-game lines a single line on the render.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].