fix(docker): add container name to network not found error

This commit is contained in:
yusing
2026-01-17 15:48:32 +08:00
parent 3cf108569b
commit 9d20fdb5c2

View File

@@ -74,7 +74,7 @@ func (p *DockerProvider) loadRoutesImpl() (route.Routes, gperr.Error) {
container := docker.FromDocker(&c, p.dockerCfg)
if container.Errors != nil {
errs.Add(container.Errors)
errs.Add(gperr.PrependSubject(container.ContainerName, container.Errors))
continue
}