Nukkit

games
Report Issue

Nukkit is a nuclear-powered server software for Minecraft Bedrock Edition https://cloudburstmc.org

Contributors:
README

Nukkit

Nukkit

Nukkit is a nuclear-powered server software for Minecraft Bedrock Edition

Docker Images (4)
Name Image
Java 21 ghcr.io/ptero-eggs/yolks:java_21
Java 17 ghcr.io/ptero-eggs/yolks:java_17
Java 11 ghcr.io/ptero-eggs/yolks:java_11
Java 8 ghcr.io/ptero-eggs/yolks:java_8
Startup Command
java -Xms128M -Xmx{{SERVER_MEMORY}}M -jar {{SERVER_JARFILE}} --language eng
Variables (2)

Server Jar File

The name of the Nukkit jar file to run the server with.

Environment:
SERVER_JARFILE
Default:
server.jar
User Viewable:
User Editable:
Rules:
required|regex:/^([\w\d._-]+)(\.jar)$/

Nukkit Version

The snapshot version of Nukkit to download (e.g. 1.0-20250805.172443-1219). Use "latest" for latest or leave empty and download manually.

Environment:
NUKKIT_VERSION
Default:
latest
User Viewable:
User Editable:
Rules:
nullable|string|max:50
Installation Script
Container: ghcr.io/ptero-eggs/installers:alpine
Entrypoint: ash
#!/bin/ash
# Nukkit Installation Script
#
# Server Files: /mnt/server
apk add --no-cache openssl

cd /mnt/server

## Only download if a path is provided, otherwise continue.
if [ "${NUKKIT_VERSION}" == "latest" ]; then
    wget https://repo.opencollab.dev/api/maven/latest/file/maven-snapshots/cn/nukkit/nukkit/1.0-SNAPSHOT?extension=jar -O ${SERVER_JARFILE}
elif [ -n "${NUKKIT_VERSION}" ]; then
    wget https://repo.opencollab.dev/maven-snapshots/cn/nukkit/nukkit/1.0-SNAPSHOT/nukkit-${NUKKIT_VERSION}.jar -O ${SERVER_JARFILE}
fi

echo -s "Install completed!"