README
Classicube MCGalaxy
MCGalaxy is a fully featured and customisable ClassiCube Server Software based on MCForge/MCLawl.
Server Ports
| Port | default |
|---|---|
| Game | 25565 |
Docker Images (1)
| Name | Image |
|---|---|
ghcr.io/ptero-eggs/yolks:mono_latest | ghcr.io/ptero-eggs/yolks:mono_latest |
Startup Command
mono MCGalaxyCLI.exe Variables (2)
Server Name
Specify the server name
- Environment:
HOSTNAME- Default:
Pterodactyl Server- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|string|max:30
MOTD
Specify the message of the day
- Environment:
MOTD- Default:
Welcome to the server- User Viewable:
- ❌
- User Editable:
- ❌
- Rules:
required|string|max:64
Installation Script
Container:
ghcr.io/ptero-eggs/installers:debianEntrypoint:
bash#!/bin/bash
mkdir -p /mnt/server
cd /mnt/server
DOWNLOAD_URL="https://cdn.classicube.net/client/mcg/release/MCGalaxy.zip"
echo -e "Downloading MCGalaxy from ${DOWNLOAD_URL}..."
curl -ssL -o mcgalaxy.zip "${DOWNLOAD_URL}"
if [ $? -ne 0 ]; then
echo "Failed to download the file. Exiting."
exit 1
fi
echo "Extracting MCGalaxy..."
unzip -j mcgalaxy.zip
rm mcgalaxy.zip
chmod +x *.dll *.exe
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"