diff --git a/daemon/health.go b/daemon/health.go index 26ae20f9b1..f40c0ddf1f 100644 --- a/daemon/health.go +++ b/daemon/health.go @@ -254,6 +254,8 @@ func getProbe(c *container.Container) probe { return &cmdProbe{shell: false} case "CMD-SHELL": return &cmdProbe{shell: true} + case "NONE": + return nil default: logrus.Warnf("Unknown healthcheck type '%s' (expected 'CMD') in container %s", config.Test[0], c.ID) return nil