CODEDRAGON ㆍSecurity/Virtualization
Docker 환경 구축 단계
· 가상화 가능 여부 확인하기
· Hyper-V 설치
· Docker CE - download(다운로드)
· Docker CE - install(설치하기)
가상화 가능 여부 확인하기
http://codedragon.tistory.com/7357
Hyper-V - install (설치하기)
http://codedragon.tistory.com/7406
Docker CE - download(다운로드)
http://codedragon.tistory.com/7449
Docker CE - install(설치하기)
다운받은 설치파일을 실행합니다.
[예]
[OK]
설치 중...
[Close and log out]
docker 동작 확인하기
Windows + R >>
cmd
docker
docker 버전 확인하기
cmd창에서 서버와 클라이언트의 docker 버전 확인하기
docker --version
docker version
docker info
아래와 같이 메시지가 나오면 정상입니다.
docker run hello-world
이미지 목록 확인
docker image ls
C:\CodeLab>docker image ls REPOSITORY TAG IMAGE ID CREATED SIZE hello-world latest e38bc07ac18e 7 weeks ago 1.85kB
C:\CodeLab> |
docker container ls --all
C:\CodeLab>docker container ls --all CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 5f1f821c1868 hello-world "/hello" 3 minutes ago Exited (0) 3 minutes ago stoic_leavitt 34e73c3d7284 hello-world "/hello" 4 minutes ago Exited (0) 4 minutes ago adoring_kapitsa
C:\CodeLab> |
'Security > Virtualization' 카테고리의 다른 글
OpenStack(오픈스택) (0) | 2018.08.21 |
---|---|
VirtualBox(Oracle VM VirtualBox) (0) | 2018.08.15 |
가상화 가능 여부 확인하기 (0) | 2018.07.30 |
Docker CheatSheet (0) | 2018.07.24 |
Kitematic 설치하기 (0) | 2018.07.12 |