0% found this document useful (0 votes)
16 views2 pages

Pterodactyl Panel Docker Setup Guide

This document provides a step-by-step guide for installing a VPS with Docker and setting up the Pterodactyl Panel and Wings. It includes commands for updating the system, installing necessary packages, cloning the Pterodactyl repository, and configuring Docker Compose. Additionally, it outlines the setup for Ngrok and editing configuration files for Pterodactyl.

Uploaded by

htgamerz282
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views2 pages

Pterodactyl Panel Docker Setup Guide

This document provides a step-by-step guide for installing a VPS with Docker and setting up the Pterodactyl Panel and Wings. It includes commands for updating the system, installing necessary packages, cloning the Pterodactyl repository, and configuring Docker Compose. Additionally, it outlines the setup for Ngrok and editing configuration files for Pterodactyl.

Uploaded by

htgamerz282
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

VPS installing

1 - sudo su
2 - sudo apt update
3 - sudo apt upgrade
4 - apt install docker-compose -y
5 - apt install neofetch
6 - neofetch

Pterodactyl Panel Install :-

1 - git clone [Link]


2 - cd docker-pterodactyl-panel
3 - docker-compose up -d
4 - docker ps
5 - docker-pterodactyl-panel_php-fpm_1
6 - docker exec -it docker-pterodactyl-panel_php-fpm_1 php artisan p:user:make

Wings:

mkdir pterodactyl

cd pterodactyl

mkdir wings

cd wings

nano [Link]

version: '3.8'

services:
wings:
image: [Link]/pterodactyl/wings:v1.6.1
restart: always
networks:
- wings0
ports:
- "8080:8080"
- "2022:2022"
- "443:443"
tty: true
environment:
TZ: "UTC"
WINGS_UID: 988
WINGS_GID: 988
WINGS_USERNAME: pterodactyl
volumes:
- "/var/run/[Link]:/var/run/[Link]"
- "/var/lib/docker/containers/:/var/lib/docker/containers/"
- "/etc/pterodactyl/:/etc/pterodactyl/"
- "/var/lib/pterodactyl/:/var/lib/pterodactyl/"
- "/var/log/pterodactyl/:/var/log/pterodactyl/"
- "/tmp/pterodactyl/:/tmp/pterodactyl/"
- "/etc/ssl/certs:/etc/ssl/certs:ro"
# you may need /srv/daemon-data if you are upgrading from an old daemon
#- "/srv/daemon-data/:/srv/daemon-data/"
# Required for ssl if you use let's encrypt. uncomment to use.
#- "/etc/letsencrypt/:/etc/letsencrypt/"
networks:
wings0:
name: wings0
driver: bridge
ipam:
config:
- subnet: "[Link]/16"
driver_opts:
[Link]: wings0

press ctrl+0 then press enter & again press ctrl+x

docker-compose up -d

Ngrok:

then go to [Link]

commands:

cd pterodactyl

sudo su

nano /etc/pterodactyl/[Link]

ls

cd wings

docker-compose up -d --force-recreate

You might also like