Package Manager Wings Installation
Install Wings directly from the APT or RPM repository. Select your package manager:
Install Docker
Wings requires Docker to manage game server containers. Verify your installation:
docker --versionIf Docker is not installed, the easiest way to get it is Docker's installation script:
curl -sSL https://get.docker.com/ | CHANNEL=stable bashOtherwise refer to the official Docker installation guide.
Add the Repository
curl -fsSL https://packages.calagopus.com/pub.gpg -o /usr/share/keyrings/calagopus-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/calagopus-archive-keyring.gpg] https://packages.calagopus.com/deb stable main" | sudo tee /etc/apt/sources.list.d/calagopus.list
apt updateInstall Wings
apt install -y calagopus-wingsVerify the installation:
calagopus-wings versionAdd an Alias (Optional)
If you'd prefer to type wings instead of calagopus-wings, create a symlink:
ln -s $(whereis -b calagopus-wings | awk '{print $2}') /usr/local/bin/wingsConfigure Wings
Before starting Wings, you need to register the node in the panel and get its configuration. Follow the Adding a Node guide to create the node, then run the auto-deploy command the panel provides:
calagopus-wings configure --join-data xxxxxxTest the configuration by running Wings in the foreground - you should see it connect to the panel:
calagopus-wingsKill it with Ctrl-C once you've confirmed it connects.
Install as a Service
calagopus-wings service-installThis creates and enables a systemd service that starts on boot. Check its status with:
systemctl status wingsNext Steps
With Wings running, the next step is to set up allocations - the IP and port combinations you can assign to servers. See Setting up Allocations.