No description
Find a file
Ryan Voots cba9bf6005
All checks were successful
ci/woodpecker/push/build/2 Pipeline was successful
ci/woodpecker/push/build/1 Pipeline was successful
ci/woodpecker/manual/build/2 Pipeline was successful
ci/woodpecker/manual/build/1 Pipeline was successful
make script accept --experimental, will setup the build matrix later
2024-05-29 07:21:10 -04:00
.github Update FUNDING.yml 2020-12-23 10:32:30 +01:00
.woodpecker 1.20.5 is defunct, 1.20.6 instead 2024-05-04 06:45:05 -04:00
.gitattributes Initial commit 2018-12-18 10:19:53 +01:00
.gitignore Readded Minecraft 1.13.2 support 2019-05-14 21:09:57 +02:00
build_docker.sh Readded Minecraft 1.13.2 support 2019-05-14 21:09:57 +02:00
docker-compose.yml Update docker-compose.yml 2021-04-30 13:14:15 +02:00
docker-entrypoint.sh re-added --nojline 2022-06-21 21:57:07 +02:00
Dockerfile Support experimental builds 2024-05-08 10:40:08 -04:00
getpaperserver.sh make script accept --experimental, will setup the build matrix later 2024-05-29 07:21:10 -04:00
LICENSE.txt Added license 2019-08-03 16:41:30 +02:00
Makefile OCD 2021-01-19 10:54:55 -06:00
rcon-cli.sh Added rcon 2019-08-14 18:56:40 +02:00
README.md Update README.md 2022-06-24 15:25:20 +02:00
run_docker.sh Added rcon 2019-08-14 18:56:40 +02:00
run_docker_bash.sh #23 PaperMC 1.14 2019-05-16 09:41:27 +02:00

Docker Minecraft JAVA PaperMC Server 1.19

Docker Minecraft PaperMC server for 1.19, 1.18, 1.17 and 1.16 (deprecated!)

Minecraft 1.19

docker pull marctv/minecraft-papermc-server:1.19

Quick Start

docker pull marctv/minecraft-papermc-server
docker run \
  --rm \
  --name mcserver \
  -e MEMORYSIZE='1G' \
  -v /homes/joe/mcserver:/data:rw \
  -p 25565:25565 \
-i marctv/minecraft-papermc-server:latest
docker attach mcserver

How do I update the container?

  • Re-download the image from the docker
  • Stop the container
  • Clear the container
  • Start the container

Volume

You can use volumes to store data persistantly, for example:

docker run --rm \
	-p 25565:25565 \
	-v <full path to folder where you want to store the server files>:/data:rw \
	marctv/minecraft-papermc-server:latest

Run as non-root user

You can get the desired UID/GID (xxx) with the ID command (id username) then add the following to your docker run command:

-e PUID=xxx
-e PGID=xxx

Docker Compose

If you prefer to use docker-compose, use the following commands:

Start the server:

docker-compose up

Stop the server:

docker-compose stop

Issue server commands after attaching to the container:

docker attach mcserver
# then you can type things like "list"
list
# which will show the current players online or
help
# to see all the commands available

How to use the Makefile with Docker Compose

Additionally, a Makefile is provided to easily start, stop, and attach to the container.

make start     # equivalent to `docker-compose up -d --build`
make stop      # equivalent to `docker-compose stop --rmi all --remove-orphans`
make attach    # equivalent to `docker attach mcserver`
make help      # prints a help message

Environment variable

MEMORYSIZE = 1G

Not more than 70% of your RAM for your Container! This is important! This is the RAM your Minecraft Server will use within the container WITHOUT the operating system.

TZ = Europe/Berlin

Sets the timezone for the container. A list of valid values can be found on wikipedia: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones

Tutorial

Tutorial (german) https://marc.tv/anleitung-stabiler-minecraft-server-synology-nas/

Watch the video

https://youtu.be/LtAQiTwLgak

Credits

On GitHub https://github.com/mtoensing/Docker-Minecraft-PaperMC-Server

This server is live here: https://mc.marc.tv

Based on the the work of Felix Klauke Thanks for your help!