-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
executable file
·30 lines (28 loc) · 924 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
executable file
·30 lines (28 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Installation: https://github.com/pterodactyl/wings
services:
wings:
image: ccarney16/pterodactyl-daemon:v1.11.13
container_name: pterodactyl-wings
hostname: pterodactyl-wings
privileged: true
tty: true
ports:
- 2022:2022
- 8026:8443
environment:
- TZ=${PTERODACTYL_WINGS_TZ}
- WINGS_UID=${PTERODACTYL_WINGS_UID}
- WINGS_GID=${PTERODACTYL_WINGS_GID}
- WINGS_USERNAME=${PTERODACTYL_WINGS_USERNAME}
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /opt/appdata/pterodactyl-wings/data:/opt/appdata/pterodactyl-wings/data # Shared data between Panel and Wings.
- /opt/appdata/pterodactyl-wings:/etc/pterodactyl # Appdata - #Where config.yml goes into.
- /opt/appdata/pterodactyl-wings/tmp:/tmp/pterodactyl # Tmp
restart: unless-stopped
networks:
- proxy
networks:
proxy:
driver: bridge
external: true