Prioritize showing the container name over labels

This commit is contained in:
Guilherme Freitas 2025-02-03 13:07:19 -03:00
parent bedde4a037
commit 9e9e005114

View file

@ -253,12 +253,8 @@ func (c *DockerCommand) GetContainers(existingContainers []*Container) ([]*Conta
}
newContainer.Container = ctr
// if the container is made with a name label we will use that
if name, ok := ctr.Labels["name"]; ok {
newContainer.Name = name
} else {
newContainer.Name = strings.TrimLeft(ctr.Names[0], "/")
}
newContainer.ServiceName = ctr.Labels["com.docker.compose.service"]
newContainer.ProjectName = ctr.Labels["com.docker.compose.project"]
newContainer.ContainerNumber = ctr.Labels["com.docker.compose.container"]