Skip to content

Commit

Permalink
fix: tell docker-machine create to use an older docker version, docke…
Browse files Browse the repository at this point in the history
  • Loading branch information
randomshinichi committed Dec 22, 2020
1 parent bc6a3f6 commit bd4a9e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/lctrld/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func Provision(settings config.Schema, evt *model.Event, cmdRunner CommandRunner

log.Infof("%s's node ID is %s", v.Name, host)
// create the parameters
p := []string{"--debug", "create", "--driver", evt.Provider}
p := []string{"--debug", "create", "--driver", evt.Provider, "--engine-install-url", "https://releases.rancher.com/install-docker/19.03.9.sh"}
p = append(p, driver.Params...)
p = append(p, host)

Expand Down

0 comments on commit bd4a9e3

Please sign in to comment.