Logic in Code,
Freedom in Travel.

인생 뭐 있나 사람 사는거 다 똑같지

DevOps/도커 (Docker)

DevOps/도커 (Docker)

[Docker] - 002. Docker CLI 와 이미지 만들기

hello world 실행도커를 처음 시작할 때 hello-world 을 통해 온보딩을 시작할 수 있다. $ docker run hello-world--- 출력 결과 ---Unable to find image 'hello-world:latest' locallylatest: Pulling from library/hello-world478afc919002: Pull completeDigest: sha256:03b30c6a3c320ff172b52bd68eddffde6ded08ce47e650fe52de861c5e9df46dStatus: Downloaded newer image for hello-world:latestHello from Docker!This message shows that your install..

2024. 4. 17. 02:43
DevOps/도커 (Docker)

[Docker] - 001. 도커 vs 가상화(VM)의 차이

VM(Virtual Machine)이라는 기술과 컨테이너(Container)라는 기술은 2000년도쯤에도 존재했고, 컨테이너는 VM을 기반으로 동작했다. 또한 컨테이너 기반의 Docker 가 출시된 것은 2013년으로 10년밖에 되지 않았다. 이러한 배경속에서 VM과 Docker을 비교하며 서로를 알아갈 필요가 있다. 미리 알고 있으면 좋은 내용으로 VM 과 Docker 의 차이는 Cuest OS 의 유무이다. VM : 분할 공간에서의 가상환경, Virtual Machine 호스트 시스템 : 서버의 OS 게스트 OS : VM 의 OS 하이퍼바이저 : 게스트OS를 구동 및 모니터링도커의 출시 배경Pycon US 2013 에서 Docker, Inc가 처음으로 세상에 공개되었다.Pycon에서 Docker 가 ..

2024. 4. 9. 21:59