I am working a docker swarm project. We choose traefik to be the main point of routing http trafic to containers.
So far so good.
However, I am seeing in the logs the following message :
2025-06-18T13:41:06Z ERR github.com/traefik/traefik/v3/pkg/provider/docker/config.go:82 > error="service \"portainer-agent\" error: port is missing" container=portainer-agent-ie041q839qz7v7552ayx5a0by providerName=swarm
after some research I understand that traefik when reading service catalog from docker swarm, the port information is not provided. But In my case this service should not be exposed in anyway through traefik. This is just an internal service.
So how can I clean this log message ?
Am I missing something ?