1
0
mirror of https://github.com/docker/cli.git synced 2026-01-13 18:22:35 +03:00

cant run volume on windows

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
Upstream-commit: 1a6a860c143487b96b8a6221768a73ed4cef6d7b
Component: engine
This commit is contained in:
Jessica Frazelle
2015-10-29 08:55:48 -07:00
parent b2d6b2b0d2
commit 7fc5a670bb

View File

@@ -508,7 +508,7 @@ func (s *DockerSuite) TestRunVolumesFromSymlinkPath(c *check.C) {
prefix = `c:`
dfContents = `FROM ` + WindowsBaseImage + `
RUN mkdir c:\home
RUN mklink /D c:\foo c:\home
RUN mklink /D c:\foo c:\home
VOLUME ["c:/foo/bar"]
ENTRYPOINT c:\windows\system32\cmd.exe`
}
@@ -2161,6 +2161,7 @@ func (s *DockerSuite) TestRunNoOutputFromPullInStdout(c *check.C) {
}
func (s *DockerSuite) TestRunVolumesCleanPaths(c *check.C) {
testRequires(c, SameHostDaemon)
prefix := ""
slash := `/`
if daemonPlatform == "windows" {