Sign inSign up

nefald/purpur

By nefald

•Updated over 1 year ago

Purpur is a drop-in replacement for Paper servers.

Image
0

436

nefald/purpur repository overview

⁠Purpur - Unofficial Docker image

Purpur⁠ Purpur is a drop-in replacement for Paper servers designed for configurability and new, fun, exciting gameplay features.

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⁠).

⁠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 Purpur documentation⁠.

⁠Docker-compose

Here a sample of docker-compose.yml :

version: '3.7'

services:
 
  Purpur:
    image: nefald/purpur:latest
    container_name: purpur
    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 Purpur container.
MAX_MEMORY2GMax memory allocated to Purpur container.
TZEurope/ParisSpecify your server timezone (list⁠).

Original logo was designed by chinnan⁠, released under CCBY⁠ license.

Tag summary

Content type

Image

Digest

sha256:8d053317c…

Size

335.5 MB

Last updated

over 1 year ago

docker pull nefald/purpur