Mincecraft Paper Spigot

docker-compose

Steve Thielemann 19d2fb8e3d Added UID/GID into docker-compose environment. 7 年之前
data 7233dd5147 Updated to GriefPrevention 16.7.1 7 年之前
mc-java 762d1bec48 bug: typo banned-player.json => banned-players.json 7 年之前
docker-compose.yml 19d2fb8e3d Added UID/GID into docker-compose environment. 7 年之前
readme.md 60f864a5a9 Initial commit for minecraft 7 年之前

readme.md

Minecraft - docker-compose

This is Minecraft, running under docker, using docker-compose.

Getting Started

Edit docker-compose.yml Edit data/server.properties, data/ops.txt Edit data/plugins/ configurations...

Prerequisites

Docker Possibly, docker configured to run as non-root

https://docs.docker.com/engine/installation/linux/linux-postinstall/

Newer Server

https://ci.destroystokyo.com/job/PaperSpigot/

Newer Plugins

(need link)

Installing

docker-compose build docker-compose up -d Or, if you're having errors starting up, just docker-compose up. (Which will display the logs to the console.)

Deployment

Edit docker-compose.yml file to chang the port.

ports:
  - "25565:25565"

This maps the external port (that everyone connects in on) to 25565. To use the external port 20065, you would use:

ports:
  - "20065:25565"

Note: You'll need to include 20065 to connect to this non-standard server port.

Authors

  • Steve Thielemann

Acknowledgments

For giving me my first taste of running minecraft server under docker.

And for the headaches of updating that made me want to try to build my own image.

My image shuts down correctly, and doesn't need SIG_KILL!