diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-30 14:30:37 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 14:30:37 -0800 |
commit | ef965bc28d3bfbaef68c30459e6cfad0a35ff84e (patch) | |
tree | 1ede60cf0d2331dd762bc9b9c30ce09271b5d44f | |
parent | ee0b328b7265a017e310e1a9cd83418cf61aa491 (diff) | |
parent | 616acf181d5df87f685b00fa5d03ab7d4e266abc (diff) | |
download | podman-ef965bc28d3bfbaef68c30459e6cfad0a35ff84e.tar.gz podman-ef965bc28d3bfbaef68c30459e6cfad0a35ff84e.tar.bz2 podman-ef965bc28d3bfbaef68c30459e6cfad0a35ff84e.zip |
Merge pull request #5031 from baude/apiv2dockercontainerslash
compat container names begin with /
-rw-r--r-- | pkg/api/handlers/types.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/api/handlers/types.go b/pkg/api/handlers/types.go index 33cf1e95d..9c8562744 100644 --- a/pkg/api/handlers/types.go +++ b/pkg/api/handlers/types.go @@ -360,7 +360,7 @@ func LibpodToContainer(l *libpod.Container, infoData []define.InfoData) (*Contai return &Container{docker.Container{ ID: l.ID(), - Names: []string{l.Name()}, + Names: []string{fmt.Sprintf("/%s", l.Name())}, Image: imageName, ImageID: imageId, Command: strings.Join(l.Command(), " "), @@ -431,7 +431,7 @@ func LibpodToContainerJSON(l *libpod.Container) (*docker.ContainerJSON, error) { HostsPath: inspect.HostsPath, LogPath: l.LogPath(), Node: nil, - Name: l.Name(), + Name: fmt.Sprintf("/%s", l.Name()), RestartCount: 0, Driver: inspect.Driver, Platform: "linux", |