Docker for Windows용 Shared Drives 설정(Kaspersky Firewall 설정)
Shared Drives 설정 오류 메시지
Docker for Windows를 설치한 후 호스트 측 디스크를 공유하기 위해 Shared Drives 설정을 하면 "Firewall detected"라는 욕설을 듣고 설정할 수 없습니다.
Kaspersky Firewall 설정 방법
상기 문서에는 포트 열기 445로 기재되어 있지만 카바스키의 그룹 규칙 설정 화면에 설정되어 있지만 방법이 좋지 않으면 안 된다.
결과는 다음과 같은 순서에 따라 완성되었다.
상기 문서에는 포트 열기 445로 기재되어 있지만 카바스키의 그룹 규칙 설정 화면에 설정되어 있지만 방법이 좋지 않으면 안 된다.
결과는 다음과 같은 순서에 따라 완성되었다.
방화벽 설치는 여기서 끝냅니다!
또한 Docker의 Shared Drives 설정에 다음 파일 시스템 인증 화면이 표시된 경우 호스트 PC의 사용자 이름(*@outlook.com)과 비밀번호를 입력해 인증하면 OK!
마운트할 수 있는지 없는지 시험해 보다
"-v"옵션을 사용하여 호스트의 "E:\temp"를 "/data"에 마운트합니다.
PS C:\Users\spiderx> dir e:
ディレクトリ: E:\
Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 2017/05/01 10:23 temp
PS C:\Users\spiderx> docker run -v E:/temp:/data -t -i ubuntu bash
Windows 10으로 작성된 텍스트 파일을 읽을 수 있는지 확인
root@691eb073c690:/# ls /data
test01.txt
root@691eb073c690:/# cat /data/test01.txt
This is test.
root@691eb073c690:/#
파일을 만들고 쓸 수 있는지 확인
root@691eb073c690:/# echo "WRITE WRITE" >> /data/test02.txt
root@691eb073c690:/# ls /data
test01.txt test02.txt
root@691eb073c690:/# ls -al /data
total 5
drwxr-xr-x 2 root root 0 May 2 06:10 .
drwxr-xr-x 1 root root 4096 May 2 06:09 ..
-rwxr-xr-x 1 root root 19 May 2 05:57 test01.txt
-rwxr-xr-x 1 root root 12 May 2 06:10 test02.txt
root@691eb073c690:/#
이상
Reference
이 문제에 관하여(Docker for Windows용 Shared Drives 설정(Kaspersky Firewall 설정)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/spiderx_jp/items/fa8d5ffe298759df9e06텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)