services: traefik: image: traefik:v2.10 container_name: traefik restart: always ports: - "80:80" - "443:443" - "8080:8080" # Dashboard Traefik (remover em produção se exposto) volumes: - /var/run/docker.sock:/var/run/docker.sock:ro - ./traefik.yml:/etc/traefik/traefik.yml:ro - ./dynamic_conf.yml:/etc/traefik/dynamic_conf.yml:ro - ./acme.json:/acme.json networks: - proxy_network networks: proxy_network: external: false name: proxy_network