From 16f226726286fda587d0c5ec66e5b305236c9d78 Mon Sep 17 00:00:00 2001 From: nchebrov Date: Thu, 22 Jan 2026 16:56:45 +0000 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20wing/docker-compose.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wing/docker-compose.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 wing/docker-compose.yml diff --git a/wing/docker-compose.yml b/wing/docker-compose.yml new file mode 100644 index 0000000..b3047e3 --- /dev/null +++ b/wing/docker-compose.yml @@ -0,0 +1,36 @@ +services: + wings: + image: "ghcr.io/pterodactyl/wings:latest" + container_name: pterodactyl_wings + restart: unless-stopped + ports: + - "2022:2022" + - "8443:443" + stdin_open: true + tty: true + environment: + TZ: Europe/Moscow # Replace with your time zone + APP_TIMEZONE: Europe/Moscow # Replace with your time zone + WINGS_UID: 1000 + WINGS_GID: 1000 + WINGS_USERNAME: pterodactyl + volumes: + - "/var/run/docker.sock:/var/run/docker.sock" + - "/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" + networks: + - wings0 + +networks: + wings0: + name: wings0 + driver: bridge + ipam: + config: + - subnet: 172.50.0.0/16 + driver_opts: + com.docker.network.bridge.name: wings0 \ No newline at end of file