■ docker container run 명령을 사용해 컨테이너를 작성하고 실행하는 방법을 보여준다.
1. [명령 프롬프트]를 실행한다.
2. 아래 명령을 실행한다.
▶ 실행 명령
1 2 3 4 5 6 |
C:\>docker container run ubuntu:latest /bin/echo 'Hello world' ※ ubuntu:latest : <이미지명> /bin/echo 'Hello world' : 실행 명령 |
3. 첫번째 실행 결과는 아래와 같다.
▶ 실행 결과
1 2 3 4 5 6 7 8 9 10 11 |
Unable to find image 'ubuntu:latest' locally latest: Pulling from library/ubuntu 6cf436f81810: Pull complete 987088a85b96: Pull complete b4624b3efe06: Pull complete d42beb8ded59: Pull complete Digest: sha256:7a47ccc3bbe8a451b500d2b53104868b46d60ee8f5b35a24b41a86077c650210 Status: Downloaded newer image for ubuntu:latest 'Hello world' |