Installing Wings
Install Docker and the upstream Wings binary on the host that will run game servers, then pair it with the Evodactyl panel from the admin UI.
Prerequisites
- A Linux host with Docker 20.10+ installed.
- Kernel ≥ 4.19 with cgroups v2 support (most modern distributions).
- Root access.
Install Docker
curl -sSL https://get.docker.com/ | CHANNEL=stable bashsystemctl enable --now dockerInstall the Wings binary
mkdir -p /etc/pterodactylcurl -L -o /usr/local/bin/wings \ "https://github.com/pterodactyl/wings/releases/latest/download/wings_linux_$([[ "$(uname -m)" == "x86_64" ]] && echo "amd64" || echo "arm64")"chmod u+x /usr/local/bin/wingsWings expects its config at /etc/pterodactyl/config.yml. The next page, Configuring Wings,
walks through generating that config from the admin UI.