mirror of
https://github.com/docker/docs.git
synced 2026-03-30 15:58:53 +07:00
This is intended as a minor fix for 1.12.1 so that task creation doesn't do unexpected things when the user supplies erroneous paths. In particular, because we're currently using hostConfig.Binds to setup mounts, if a user uses an absolute path for a volume mount source, or a non-absolute path for a bind mount source, the engine will do the opposite of what the user requested since all absolute paths are treated as binds and all non-absolute paths are treated as named volumes. Fixes #25253 Signed-off-by: Brian Goff <cpuguy83@gmail.com> (cherry picked from commit 38f8b0eb10725c40fb3c7e0719accd240cd39e22) Signed-off-by: Tibor Vass <tibor@docker.com>
6 lines
53 B
Go
6 lines
53 B
Go
package container
|
|
|
|
const (
|
|
testAbsPath = `c:\foo`
|
|
)
|