■ docker container run 명령의 w 옵션을 사용해 작업 디렉토리를 설정하고 컨테이너를 작성해 실행하는 방법을 보여준다.
1. [명령 프롬프트]를 실행한다.
2. 아래 명령을 실행한다.
▶ 실행 명령
1 2 3 4 5 6 7 |
C:\>docker container run -it -w=C:/Windows mcr.microsoft.com/windows/nanoserver cmd ※ -w=C:/Windows : 설정할 작업 디렉토리 mcr.microsoft.com/windows/nanoserver : <이미지명> cmd : 실행할 명령 |
3. 실행 결과는 아래와 같다.
▶ 실행 결과
1 2 3 4 5 6 |
Microsoft Windows [Version 10.0.14393] (c) 2016 Microsoft Corporation. All rights reserved. C:\Windows> |