-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Feat: create docker image * Feat: create screenshot * Feat: add mission
- Loading branch information
1 parent
3c43580
commit 31fa250
Showing
3 changed files
with
13 additions
and
0 deletions.
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,11 @@ | ||
1. 컨테이너 기술이란 무엇입니까? (100자 이내로 요약) | ||
- **컨테이너 기술**은 애플리케이션을 격리된 환경에 패키징하여 이식성과 확장성을 높이는 기술이다. | ||
|
||
2. 도커란 무엇입니까? (100자 이내로 요약) | ||
- **도커**는 컨테이너 기술을 이용하여 애플리케이션을 개발, 배포, 실행할 수 있는 플랫폼이다. | ||
|
||
3. 도커 파일, 도커 이미지, 도커 컨테이너의 개념은 무엇이고, 서로 어떤 관계입니까? | ||
- **도커 파일**은 애플리케이션 설정과 종속성을 정의하는 스크립트이다. **도커 이미지**는 이 파일을 기반으로 빌드된 실행 가능한 패키지이며, **도커 컨테이너**는 이미지의 인스턴스로서 실행되는 격리된 환경이다. | ||
|
||
4. [실전 미션] 도커 설치하기 | ||
![도커 설치화면](docker-build-screenshot.png) |