Wings

Updating

How to update Wings to a new version.

Using the Installer Script

If you installed with the official script, the updater handles Wings alongside the Panel:

bash <(curl -fsSL https://install.struxa.cloud) update

Manual Update

Pull and Restart

cd /opt/wings
docker compose pull
docker compose up -d

Viewing Logs

cd /opt/wings
docker compose logs -f

Restart After Config Changes

If you edit /etc/pterodactyl/config.yml:

cd /opt/wings
docker compose restart

Stop and Start

# Stop Wings
docker compose down

# Start again
docker compose up -d

On this page