Browse code

Merge pull request #31103 from tonistiigi/update-docs-link

Update storage driver options link
(cherry picked from commit e1839ab95341fe8c40d8e8e0112fcfab38c92f3f)

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Vincent Demeester authored on 2017/02/17 17:45:31
Showing 1 changed files
... ...
@@ -28,7 +28,7 @@ import (
28 28
 	"github.com/docker/docker/pkg/loopback"
29 29
 	"github.com/docker/docker/pkg/mount"
30 30
 	"github.com/docker/docker/pkg/parsers"
31
-	"github.com/docker/go-units"
31
+	units "github.com/docker/go-units"
32 32
 
33 33
 	"github.com/opencontainers/runc/libcontainer/label"
34 34
 )
... ...
@@ -1713,9 +1713,9 @@ func (devices *DeviceSet) initDevmapper(doInit bool) error {
1713 1713
 	// https://github.com/docker/docker/issues/4036
1714 1714
 	if supported := devicemapper.UdevSetSyncSupport(true); !supported {
1715 1715
 		if dockerversion.IAmStatic == "true" {
1716
-			logrus.Error("devmapper: Udev sync is not supported. This will lead to data loss and unexpected behavior. Install a dynamic binary to use devicemapper or select a different storage driver. For more information, see https://docs.docker.com/engine/reference/commandline/daemon/#daemon-storage-driver-option")
1716
+			logrus.Error("devmapper: Udev sync is not supported. This will lead to data loss and unexpected behavior. Install a dynamic binary to use devicemapper or select a different storage driver. For more information, see https://docs.docker.com/engine/reference/commandline/dockerd/#storage-driver-options")
1717 1717
 		} else {
1718
-			logrus.Error("devmapper: Udev sync is not supported. This will lead to data loss and unexpected behavior. Install a more recent version of libdevmapper or select a different storage driver. For more information, see https://docs.docker.com/engine/reference/commandline/daemon/#daemon-storage-driver-option")
1718
+			logrus.Error("devmapper: Udev sync is not supported. This will lead to data loss and unexpected behavior. Install a more recent version of libdevmapper or select a different storage driver. For more information, see https://docs.docker.com/engine/reference/commandline/dockerd/#storage-driver-options")
1719 1719
 		}
1720 1720
 
1721 1721
 		if !devices.overrideUdevSyncCheck {