yesdoing
Frontend Developer
19. 08. 17
이장희
What is the Docker?
도커는 솔로몬 하익스(Solomon Hykes) 씨가
2013년 파이콘 라이트닝 토크에서 발표한
The future of Linux Containers 에서
최초로 소개 되었습니다.
What is the Docker?
Docker is a platform for developers and sysadmins to develop, deploy,
and run applications with containers.
The use of Linux containers to deploy applications is called containerization.
Containers are not new, but their use for easily deploying applications is.
What is the Docker?
What is the Docker?
도커란 컨테이너형 가상화 라고 불리는 기술을 통해서
환경에 구애 받지 않고 애플리케이션을 배포하는데 특화 된 플랫폼
What is the Docker?
What is the Docker?
What is the Docker?
What is the Docker?
What is the Docker?
What is the Docker?
도커의 구성요소
Docker Client
Docker Objects
Docker Daemon
Docker Registry
What is the Docker?
Docker Client는 사용자와 컨테이너간의 대화 수단입니다.
사용자가 입력한 모든 도커 커맨드를 뜻합니다.
What is the Docker?
What is the Docker?
Docker Object는 도커에서 중요한 컴포넌트인 컨테이너와 이미지를 뜻합니다.
컨테이너는 이미지의 인스턴스 이며, 이것은 읽고 쓰는 작업이 가능합니다.
이미지는 오직 읽기 만이 가능하며 새로운 컨테이너를 만드는데 사용됩니다.
What is the Docker?
What is the Docker?
Docker Daemon 은 도커 클라이언트에서 들어오는 명령을 응답하기 위해 실행되는 백그라운드 프로세스입니다. 흔히 도커 서버라고도 불리며,
CLI를 통해 들어오는 명령을 컨테이너에게 전달합니다.
What is the Docker?
What is the Docker?
Docker Registry 는 보통, 도커 허브(Docker Hub)라고도 불리며,
사용자가 생성한 이미지를 저장하고 받을 수 있는 원격 저장소 입니다.
What is the Docker?
What is the Docker?
What is the Docker?
What is the Docker?
VM과 컨테이너는 호스트 환경과 다른 환경을 제공하는 목적을 지닌다.
그럼 이 둘은 뭐가 다른걸까?
What is the Docker?
VM의 경우
What is the Docker?
Container의 경우
What is the Docker?
Why use the Docker?
Why use the Docker?
Why use the Docker?
Why use the Docker?
Why use the Docker?
개발 서버를 다시 구성할려니 처음 구성했던 운영체제부터 컴파일러, 설치된 패키지까지 완벽하게 똑같이 설치 할려니 기억이 잘 안남..
Why use the Docker?
좀 더 현실적인 예제를 들어보자.
Why use the Docker?
Why use the Docker?
A Server
Install
ImageMagick
Server에 Image Magick 이라는 도구를 설치한다고 가정해보자.
B Server
Install
ImageMagick
1 달전
오늘
Why use the Docker?
Why use the Docker?
Why use the Docker?
Why use the Docker?
Why use the Docker?
예제에서는 1달을 기준으로 삼았지만 기간이 더 늘어날 수 있습니다.
처음엔 각 서버 사이의 차이점이 눈송이 하나 만큼 작을지 모르지만, 서버를 오래 운영하다보면 점점 커져서 나중엔 집을 삼키는
거대한 눈덩이가 되어 있을 겁니다.
Why use the Docker?
Why use the Docker?
Why use the Docker?
Why use the Docker?
Why use the Docker?
물론 도커를 사용하지 않고도 서버 운영 기록을 저장할 수 있습니다.
Why use the Docker?
Why use the Docker?
Dockerfile 역시 서버 운영 기록을 코드화 한 것입니다.
Why use the Docker?
이렇게 만들어진 도커 이미지는 운영 기록을 실행 할 시점
이라 할 수 있습니다.
Why use the Docker?
Why use the Docker?
Why use the Docker?
By yesdoing
Docker 알쓸신잡