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 6a89ab77c8
commit 61236e0ace

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
}