■ docker image pull 명령을 사용해 도커 허브에서 이미지를 다운로드하는 방법을 보여준다.
1. [명령 프롬프트]를 실행한다.
2. 아래 명령을 실행한다.
▶ 실행 명령
1 2 3 4 5 |
C:\>docker image pull nginx ※ nginx : <이미지명> |
3. 실행 결과는 아래와 같다.
▶ 실행 결과
1 2 3 4 5 6 7 8 9 |
Using default tag: latest latest: Pulling from library/nginx 6ae821421a7d: Pull complete da4474e5966c: Pull complete eb2aec2b9c9f: Pull complete Digest: sha256:dd2d0ac3fff2f007d99e033b64854be0941e19a2ad51f174d9240dda20d9f534 Status: Downloaded newer image for nginx:latest |