Mincecraft Paper Spigot
docker-compose
![]() |
7 年之前 | |
---|---|---|
data | 7 年之前 | |
mc-java | 7 年之前 | |
docker-compose.yml | 7 年之前 | |
readme.md | 7 年之前 |
This is Minecraft, running under docker, using docker-compose.
Edit docker-compose.yml Edit data/server.properties, data/ops.txt Edit data/plugins/ configurations...
Docker Possibly, docker configured to run as non-root
https://docs.docker.com/engine/installation/linux/linux-postinstall/
https://ci.destroystokyo.com/job/PaperSpigot/
(need link)
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.)
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.
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!