1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

docker rm <unknown>

Signed-off-by: Victor Vieux <vieux@docker.com>
This commit is contained in:
Victor Vieux 2014-10-02 22:52:37 +00:00
parent 8a0733ce69
commit 3eaa1c99c1

View file

@ -20,7 +20,7 @@ func (daemon *Daemon) ContainerRm(job *engine.Job) engine.Status {
container := daemon.Get(name) container := daemon.Get(name)
if container == nil { if container == nil {
job.Errorf("No such container: %s", name) return job.Errorf("No such container: %s", name)
} }
if removeLink { if removeLink {