Skip to content

Commit

Permalink
Change default docker storage driver to overlay2
Browse files Browse the repository at this point in the history
The "aufs" storage driver has been deprecated,
changed in Docker 17.09 for "overlay2" instead.

See docker/machine#4558

This only affects the "boot2docker" provisioner,
since it is already being used by "buildroot".

Closes #3078
  • Loading branch information
afbjorklund authored and dlorenc committed Sep 10, 2018
1 parent 82e9914 commit 3b97276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/minikube/machine/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func (api *LocalClient) NewHost(driverName string, rawDriver []byte) (*host.Host
ServerKeyPath: filepath.Join(api.GetMachinesDir(), "server-key.pem"),
},
EngineOptions: &engine.Options{
StorageDriver: "aufs",
StorageDriver: "overlay2",
TLSVerify: true,
},
SwarmOptions: &swarm.Options{},
Expand Down

0 comments on commit 3b97276

Please sign in to comment.