yes it will still work, then you will have to put port reference in traefik.
services:
traefik:
image: traefik:v3.0 # Or your desired Traefik version
container_name: traefik
ports:
- "80:80"
- "443:443"
- "8080:8080" # Traefik Dashboard
- "51820:51820/udp" # Custom UDP port
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./traefik_dynamic:/etc/traefik/dynamic # Mount the dynamic config directory
networks:
- pangolin
networks:
pangolin:
external: true # Or define it here if not already existing
UDP port change not required because there is no gerbil. you can use default wg-eazy ports
if you change ports don’t forget to update here


