Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5월 ernest45] 사전미션 #20

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions mission/ernest45.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
1. 컨테이너 기술 ?

가상화 기술 중 하나로
호스트 운영체제 위 여러 격리된 환경
리눅스의 커널 기능을 사용해서 만들어짐
프로세스 별로 격리




2. 도커란?


오픈소스 프로그램이고 도커를 사용하면 어플리케이션을 인프라에서
분리해서 신속하게 제공, 인프라를 어플리케이션 관리 하는 거처럼 관리 가능

3. 도커 파일, 도커 이미지, 도커 컨테이너의 개념은 무엇이고, 서로 어떤 관계?

도커 이미지는 도커 컨테이너를 만들기 위한 템플릿이고
컨테이너는 이미지를 프로세스 별로 실행시키는 인스턴스


3 changes: 3 additions & 0 deletions mission/hanjun/Dokcerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM alpine:latest
CMD ["echo", "Hello, World"]

3 changes: 3 additions & 0 deletions mission/hanjun/dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM alpine:latest
CMD ["echo", "Hello, World"]