Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions blueprints/wings/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
version: '3.8'

services:
wings:
image: ghcr.io/pterodactyl/wings:v1.11.11 # latest version (v1.12.0) doesnt work - https://github.com/pterodactyl/panel/pull/5324
restart: always
ports:
- 8080
- 2022
tty: true
environment:
TZ: "UTC"
WINGS_UID: 988
WINGS_GID: 988
WINGS_USERNAME: pterodactyl
volumes:
- "/var/run/docker.sock:/var/run/docker.sock"
- "/var/lib/docker/containers/:/var/lib/docker/containers/"
- "/etc/wings/:/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"
labels:
- "traefik.enable=true"
- "traefik.http.routers.c1.rule=Host(`your.wings.domain`)"
- "traefik.http.routers.c1.entrypoints=websecure"
- "traefik.http.services.c1.loadbalancer.server.port=8080"
- "traefik.http.routers.c1.tls=true"
- "traefik.http.middlewares.c1-headers.headers.customrequestheaders.X-Forwarded-Proto=https"
- "traefik.http.routers.c1.middlewares=c1-headers"
- "traefik.http.services.c1.loadbalancer.server.scheme=https"
- "traefik.http.routers.c1.tls.certresolver=myresolver"
Binary file added blueprints/wings/pterodactyl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions blueprints/wings/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[variables]
main_domain = "${domain}"

[config]
env = []
mounts = []

[[config.domains]]
serviceName = "wings"
port = 8080
host = "${main_domain}"
16 changes: 16 additions & 0 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6204,6 +6204,22 @@
"os"
]
},
{
"id": "wings",
"name": "Pterodactyl Wings",
"version": "v1.11.11",
"description": "The server control plane for Pterodactyl Panel. Written from the ground-up with security, speed, and stability in mind.",
"logo": "pterodactyl.png",
"links": {
"github": "https://github.com/pterodactyl/wings",
"website": "https://pterodactyl.io",
"docs": "https://pterodactyl.io/project/introduction.html"
},
"tags": [
"self-hosted",
"open-source"
]
},
{
"id": "wordpress",
"name": "Wordpress",
Expand Down