Egg Repository

Pterodactyl Community Egg Repository

Quilt

The Quilt project is an open-source, community-driven modding toolchain designed primarily for Minecraft. By focusing on speed, ease of use and modularity, Quilt aims to provide a sleek and modern modding toolchain with an open ecosystem.

Read Me

Quilt

From their Website

Documentation

The Quilt project is an open-source, community-driven modding toolchain designed primarily for Minecraft. By focusing on speed, ease of use and modularity, Quilt aims to provide a sleek and modern modding toolchain with an open ecosystem.

Installation/System Requirements

Bare MinimumRecommended
ProcessorMinecraft probably supports everything?-
RAM2GB5GB
Storage300MB10GB
Network3 Mbit/s7 Mbit/s
Game OwnershipThe game is not required to run the server.-

Server Ports

Ports required to run the server in a table format.

Portdefault
Game25565

Notes

25565 is the default port, but any port can be used.

Yolks
NameTag
Java 8ghcr.io/ptero-eggs/yolks:java_8
Java 11ghcr.io/ptero-eggs/yolks:java_11
Java 16ghcr.io/ptero-eggs/yolks:java_16
Java 17ghcr.io/ptero-eggs/yolks:java_17
java 21ghcr.io/ptero-eggs/yolks:java_21
java 22ghcr.io/ptero-eggs/yolks:java_22
Variables
NameDescriptionEnvironment VariableDefault ValueUser ViewableUser Editable
Minecraft VersionVersion of Minecraft that will be installed. You can only choose the exact version number, for example "1.20.2", "latest" won't work!MC_VERSION1.20.2YesYes
Server Jar FileThe name of the jarfile that will be ran on server launch.SERVER_JARFILEserver.jarYesYes
Install Script
#!/bin/bash
# Quilt Installation Script
#
# Server Files: /mnt/server
apt update
apt install -y wget
mkdir -p /mnt/server
cd /mnt/server

wget -O quilt.jar https://quiltmc.org/api/v1/download-latest-installer/java-universal
java -jar quilt.jar \
  install server $MC_VERSION \
  --download-server
cd /mnt/server/server
mv * /mnt/server
cd ..
rm quilt.jar
rmdir /mnt/server/server
mv server.jar minecraft.jar
mv quilt-server-launch.jar server.jar
echo "serverJar=minecraft.jar" > quilt-server-launcher.properties
echo -e "Server is Ready!"