mirror of
https://github.com/fosrl/pangolin.git
synced 2026-07-16 06:08:33 -05:00
[GH-ISSUE #1388] Erros when upgraded #38680
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Zoe8338 on GitHub (Aug 31, 2025).
Original GitHub issue: https://github.com/fosrl/pangolin/issues/1388
I have tried upgrading from 1.2.0 to the newest release but I got errors:
traefik | 2025-08-31T19:06:23Z ERR Provider error, retrying in 7.735697709s error="cannot fetch configuration data: do fetch request: Get "http://pangolin:3001/api/v1/traefik-config": dial tcp: lookup pangolin on 127.0.0.11:53: read udp 127.0.0.1:54959->127.0.0.11:53: read: connection refused" providerName=http
Here is my dcoker compose:
name: pangolin
services:
pangolin:
image: fosrl/pangolin:1.9.0
container_name: pangolin
restart: unless-stopped
volumes:
- ./config:/app/config
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3001/api/v1/"]
interval: "3s"
timeout: "3s"
retries: 5
gerbil:
image: fosrl/gerbil:1.2.0
container_name: gerbil
restart: unless-stopped
depends_on:
pangolin:
condition: service_healthy
command:
- --reachableAt=http://gerbil:3003
- --generateAndSaveKeyTo=/var/config/key
- --remoteConfig=http://pangolin:3001/api/v1/gerbil/get-config
- --reportBandwidthTo=http://pangolin:3001/api/v1/gerbil/receive-bandwidth
volumes:
- ./config/:/var/config
cap_add:
- NET_ADMIN
- SYS_MODULE
ports:
- 51820:51820/udp
- 443:443 # Port for traefik because of the network_mode
- 80:80 # Port for traefik because of the network_mode
#My Unturned Server
- 25568:25568
- 25568:25568/udp
- 25569:25569
- 25569:25569/udp
Tinycat Minecraft Forge Server
#MCPE mine
- 25571:25571/udp
#MyVelocityMC
- 25572:25572
traefik:
image: traefik:3.5.0
container_name: traefik
restart: unless-stopped
networks:
default:
driver: bridge
name: pangolin