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

사전 과제 제출 #194

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions mission/yeji/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
FROM alpine:latest
CMD ["echo", "Hello", "World"]
Binary file added mission/yeji/도커 이미지 실행 화면.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions mission/yeji/사전 과제.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
### 1. 컨테이너 기술이란 무엇입니까? (100자 이내로 요약)

운영체제를 가상화하여 여러 환경에서 애플리케이션을 구축, 테스트, 구현 및 재구현할 수 있는 효율적인 방법이다.
**즉, 컨테이너 기술이란 어떤 환경에서나 동일하게 실행할 수 있는 소프트웨에어 패키지이다.**

### 2. 도커란 무엇입니까? (100자 이내로 요약)

“리눅스 컨테이너 기반”으로 하는 오픈소스 가상화 플랫폼으로, 기존 시스템(Host OS)에서 독자적인 시스템 환경(Guest OS)을 분리, 구축하는 기술을 가진 플랫폼이다.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

아닙니다.
기존 시스템(Host OS)에서 독자적인 시스템 환경(Guest OS)을 분리 하는 것은 컨테이너 방식이 아닌,
가상머신 방식입니다.
위 서술하신대로, 도커는 컨테이너 가상화 기술을 사용하였기 때문에, 위 서술은 오류가 있습니다.

다시 한번 복습해보시고 수정해보세요. 💪🏻


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

- 도커 파일

도커에서 이미지를 생성하기 위한 용도로 작성하는 파일이다.
즉, 만들 이미지에 대한 정보를 기술해 둔 템플릿(template)이라고 보면 된다.


- 도커 이미지

어플리케이션 실행에 필요한 모든 것(코드, 런타임, 시스템 도구, 시스템 라이브러리 및 설정) 을 포함한 소트웨어패키지이다.

- 도커 컨테이너

이미지(image)를 실행한 상태로, 사용자가 기본 시스템에서 애플리케이션을 분리할 수 있는 가상화된 런타임 환경이다.
중요 기능은 컨테이너 내부에서 실행되는 <**컴퓨팅 환경의 표준화>**이다.
즉, 응용 프로그램이 동일한 환경에서 작동하도록 하게 하는 기능을 가졌다.