Erros when upgraded #982

Closed
opened 2026-04-05 18:04:21 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @Zoe8338 on 8/31/2025

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

  - 5060:5060/udp
  - 1935:1935/tcp
  - 8080:8080
  - 8443:8443
  - 25565:25565
  - 25566:25566
  - 25566:25566/udp
  - 25567:25567

#My Unturned Server
- 25568:25568
- 25568:25568/udp
- 25569:25569
- 25569:25569/udp

Tinycat Minecraft Forge Server

  - 25570:25570

#MCPE mine
- 25571:25571/udp
#MyVelocityMC
- 25572:25572

traefik:
image: traefik:3.5.0
container_name: traefik
restart: unless-stopped

network_mode: service:gerbil # Ports appear on the gerbil service

depends_on:
  pangolin:
    condition: service_healthy
command:
  - --configFile=/etc/traefik/traefik_config.yml
volumes:
  - ./config/traefik:/etc/traefik:ro # Volume to store the Traefik configuration
  - ./config/letsencrypt:/letsencrypt # Volume to store the Let's Encrypt certificates
  - ./config/traefik/logs:/var/log/traefik # Volume to store Traefik logs

networks:
default:
driver: bridge
name: pangolin

*Originally created by @Zoe8338 on 8/31/2025* 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 - 5060:5060/udp - 1935:1935/tcp - 8080:8080 - 8443:8443 - 25565:25565 - 25566:25566 - 25566:25566/udp - 25567:25567 #My Unturned Server - 25568:25568 - 25568:25568/udp - 25569:25569 - 25569:25569/udp # Tinycat Minecraft Forge Server - 25570:25570 #MCPE mine - 25571:25571/udp #MyVelocityMC - 25572:25572 traefik: image: traefik:3.5.0 container_name: traefik restart: unless-stopped network_mode: service:gerbil # Ports appear on the gerbil service depends_on: pangolin: condition: service_healthy command: - --configFile=/etc/traefik/traefik_config.yml volumes: - ./config/traefik:/etc/traefik:ro # Volume to store the Traefik configuration - ./config/letsencrypt:/letsencrypt # Volume to store the Let's Encrypt certificates - ./config/traefik/logs:/var/log/traefik # Volume to store Traefik logs networks: default: driver: bridge name: pangolin
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/pangolin#982