Skip to content

Installation

he3als edited this page Nov 24, 2024 · 10 revisions

This comprehensive guide walks you through setting up Pyrodactyl using Docker, from scratch to a fully functional system.

Important

For Pyrodactyl-specific issues, please use Pyrodactyl GitHub Discussions instead of Pterodactyl or Pelican support channels.

🎯 Quick Install for Existing Pterodactyl Users

Warning

Always make sure you take a backup of your Pterodactyl database and other relevant data.

Docker

If you already have Pterodactyl running in Docker, simply update your panel image in your docker-compose.yml file:

-image: ghcr.io/pterodactyl/panel:latest
+image: ghcr.io/pyrohost/pyrodactyl:main

You can swap back whenever you'd like.

Non-Docker

Note

The latest NodeJS LTS is required to be installed to migrate.

If you have Pterodactyl running without Docker, follow the manual Pterodactyl updating guide. However, on the Download the Update step, use these commands instead:

git clone https://github.com/pyrohost/pyrodactyl.git /var/www/pterodactyl --depth=2
npm ci && npm run ship
chmod -R 755 storage/* bootstrap/cache/

πŸ“ Prerequisites

  • Linux system with root access
  • Docker expertise and basic system administration skills
  • Docker Engine and Docker Compose installed
    • Consider Portainer for easier Docker management
    • Avoid using Snap-based Docker installations on Ubuntu
    • Enable Docker auto-start on boot

Note

Windows is currently only supported for development purposes.

πŸ”₯ Pyrodactyl Installation

  1. Download and configure the docker-compose.example.yml

    • Modify placeholder variables under x-common
    • Adjust exposed ports if needed
  2. Create a new folder (e.g. pyrodactyl-panel) on your server in a safe location, and move or upload your edited compose file into it. Rename the file to docker-compose.yml

  3. In terminal, cd into the directory, and run the following command to start the panel:

    docker compose up -d
  4. Run the command below, and go through its prompts to create an admin user:

    docker compose exec panel php artisan p:user:make
  5. Check that the panel is accessible using the IP address or domain of your server

βš™οΈ Panel Configuration

  1. Access the panel via your server's IP/domain and login to your previously created user

  2. Navigate to admin panel (three dots menu β†’ Admin)

  3. Navigate to Locations, make a new location. It can have any name

  4. Navigate to Nodes, create a new node

    • FQDN is the domain or IP address (if you're not using HTTPS) of the server you're going to use as a backend

    • You should make sure the daemon ports are free on your backend server

  5. On the new node, go to the:

    • Configuration tab: Copy the contents to /etc/pterodactyl/config.yml on your backend server
    • Allocation tab: Add some allocations to use for your servers. The IP should be 0.0.0.0. If you want to show a different IP in the UI (e.g. a subdomain), add an alias. You can input a range of ports like 25565-26000

πŸ¦– Wings Installation

In addition to the Pyrodactyl panel, you'll need Pterodactyl Wings as a backend for your servers, which we will also use Docker for. You can have multiple Wings instances on different servers, but for now, we're setting up just one.

  1. Run the commands below to setup the compose for Wings:

    mkdir pyrodactyl-wings && cd pyrodactyl-wings
    wget https://github.com/pterodactyl/wings/raw/develop/docker-compose.example.yml -O docker-compose.yml
  2. Run the following command to start Wings:

    docker compose up -d
    
  3. Verify Wings status:

    docker ps | grep wings

⭐ Post-Installation Steps

πŸ“§ Email Configuration

For user password reset emails, etc, you'll need an SFTP server. For this, you can use:

Configure in Admin Panel β†’ Settings

πŸ›‘οΈ DDoS protection

If you're planning to have your server publicly accessible, your server could be vulnerable to DDoS attacks. Although not covered here due to its complexity, consider using:

The goal is to not have your server's IP address on any of your known domains.

πŸ” Troubleshooting

If issues arise:

  1. Test with vanilla Pterodactyl by changing panel image to ghcr.io/pterodactyl/panel:latest
  2. Debug issues
  3. Switch back to Pyrodactyl image when resolved

πŸ“š Additional Resources