소스 검색

Merge pull request #1704 from gtardif/fix_win_mount_socket

Nicolas De loof 4 년 전
부모
커밋
d16a5f4cb9
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      local/compose/create.go

+ 3 - 1
local/compose/create.go

@@ -774,7 +774,9 @@ func isUnixAbs(path string) bool {
 
 func buildMount(project types.Project, volume types.ServiceVolumeConfig) (mount.Mount, error) {
 	source := volume.Source
-	if volume.Type == types.VolumeTypeBind && !filepath.IsAbs(source) {
+	// on windows, filepath.IsAbs(source) is false for unix style abs path like /var/run/docker.sock.
+	// do not replace these with  filepath.Abs(source) that will include a default drive.
+	if volume.Type == types.VolumeTypeBind && !filepath.IsAbs(source) && !strings.HasPrefix(source, "/") {
 		// volume source has already been prefixed with workdir if required, by compose-go project loader
 		var err error
 		source, err = filepath.Abs(source)