MCGalaxy is a fully featured and customisable ClassiCube Server Software based on MCForge/MCLawl.
| Port | default |
|---|---|
| Game | 25565 |
| Name | Tag |
|---|---|
| ghcr.io/ptero-eggs/yolks:mono_latest | ghcr.io/ptero-eggs/yolks:mono_latest |
Specify the server name
Specify the message of the day
#!/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 "-----------------------------------------"| Installation Image | ghcr.io/ptero-eggs/installers:debian | Installation Entrypoint | bash |
|---|