-
Notifications
You must be signed in to change notification settings - Fork 277
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
yj120
wants to merge
3
commits into
drum-grammer:main
Choose a base branch
from
yj120:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
사전 과제 제출 #194
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
FROM alpine:latest | ||
CMD ["echo", "Hello", "World"] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
### 1. 컨테이너 기술이란 무엇입니까? (100자 이내로 요약) | ||
|
||
운영체제를 가상화하여 여러 환경에서 애플리케이션을 구축, 테스트, 구현 및 재구현할 수 있는 효율적인 방법이다. | ||
**즉, 컨테이너 기술이란 어떤 환경에서나 동일하게 실행할 수 있는 소프트웨에어 패키지이다.** | ||
|
||
### 2. 도커란 무엇입니까? (100자 이내로 요약) | ||
|
||
“리눅스 컨테이너 기반”으로 하는 오픈소스 가상화 플랫폼으로, 기존 시스템(Host OS)에서 독자적인 시스템 환경(Guest OS)을 분리, 구축하는 기술을 가진 플랫폼이다. | ||
|
||
### 3. 도커 파일, 도커 이미지, 도커 컨테이너의 개념은 무엇이고, 서로 어떤 관계입니까? | ||
|
||
- 도커 파일 | ||
|
||
도커에서 이미지를 생성하기 위한 용도로 작성하는 파일이다. | ||
즉, 만들 이미지에 대한 정보를 기술해 둔 템플릿(template)이라고 보면 된다. | ||
|
||
|
||
- 도커 이미지 | ||
|
||
어플리케이션 실행에 필요한 모든 것(코드, 런타임, 시스템 도구, 시스템 라이브러리 및 설정) 을 포함한 소트웨어패키지이다. | ||
|
||
- 도커 컨테이너 | ||
|
||
이미지(image)를 실행한 상태로, 사용자가 기본 시스템에서 애플리케이션을 분리할 수 있는 가상화된 런타임 환경이다. | ||
중요 기능은 컨테이너 내부에서 실행되는 <**컴퓨팅 환경의 표준화>**이다. | ||
즉, 응용 프로그램이 동일한 환경에서 작동하도록 하게 하는 기능을 가졌다. | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아닙니다.
기존 시스템(Host OS)에서 독자적인 시스템 환경(Guest OS)을 분리
하는 것은 컨테이너 방식이 아닌,가상머신 방식입니다.
위 서술하신대로, 도커는 컨테이너 가상화 기술을 사용하였기 때문에, 위 서술은 오류가 있습니다.
다시 한번 복습해보시고 수정해보세요. 💪🏻