Sign inSign up

nefald/papermc

By nefald

Updated about 4 years ago
Archived

ARCHIVED. https://hub.docker.com/repository/docker/nefald/paper

Image
3

2.4K

nefald/papermc repository overview

PaperMC - Unofficial Docker image

PaperMC is the next generation of Minecraft server, compatible with Spigot plugins, offering uncompromising performance. Here, a Docker version. If you want to allow your Minecraft Bedrock players to join this server, you should use this image with Docker-compose, beside our other image with GeyserMC (Docker Hub).

You can find support and updated documentation on our Gitlab, also you can discuss and join us on our Discord.

RCON

Our docker image integrated the RCON CLI by Itzg, based on james4k's RCON library for golang. With it, you will be able to manage your Minecraft server using a RCON client/console, for example MCrcon by Tiifii.

Setup

Always refer you to PaperMC documentation.

Docker-compose

Here a sample of docker-compose.yml :

version: '3.7'

services:
 
  paperMC:
    image: nefald/papermc:latest
    container_name: paperMC
    restart: unless-stopped
    stdin_open: true
    tty: true

    ports:
      # Minecraft
      - 25565:25565/tcp
      - 25565:25565/udp

      # RCON
      - 25575:25575/tcp
      - 25575:25575/udp

    volumes:
      - '/path/to/local/folder:/data'
      
    environment:
      - INIT_MEMORY=4G
      - MAX_MEMORY=4G
      - TZ=Europe/Paris
environment variables
VariableDefaultFunction
INIT_MEMORY2GMin memory allocated to paperMC container.
MAX_MEMORY2GMax memory allocated to paperMC container.
TZEurope/ParisSpecify your server timezone (list).

LICENSE

This image is based on Felix Klauke image, released under MIT LICENSE.

Original logo was designed by corpus delicti, released under CCBY license.

Tag summary

Content type

Image

Digest

sha256:9d8937e11

Size

250.8 MB

Last updated

about 4 years ago

docker pull nefald/papermc