Skip to content

Commit

Permalink
Merge pull request #13204 from csrwng/docker_version_warning_15
Browse files Browse the repository at this point in the history
Merged by openshift-bot
  • Loading branch information
OpenShift Bot authored Mar 3, 2017
2 parents 90fb864 + f49d0c7 commit 951d0fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkg/bootstrap/docker/up.go
Original file line number Diff line number Diff line change
Expand Up @@ -608,10 +608,12 @@ func (c *CommonStartConfig) CheckNsenterMounter(out io.Writer) error {

// CheckDockerVersion checks that the appropriate Docker version is installed based on whether we are using the nsenter mounter
// or shared volumes for OpenShift
func (c *CommonStartConfig) CheckDockerVersion(io.Writer) error {
func (c *CommonStartConfig) CheckDockerVersion(out io.Writer) error {
ver, rh, err := c.DockerHelper().Version()
if err != nil {
return err
glog.V(1).Infof("Failed to check Docker version: %v", err)
fmt.Fprintf(out, "WARNING: Cannot verify Docker version\n")
return nil
}
needVersion := dockerVersion19
if !rh {
Expand Down

0 comments on commit 951d0fb

Please sign in to comment.