일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 프로그래머스
- 1463번
- BC렌트
- IntelliJ
- FIDO 환불
- Linux
- 설탕문제
- 리눅스
- 자바
- 벤쿠버 렌트
- 백준알고리즘
- 언마운트
- 외래키설정
- 부산입국
- QA엔지니어
- Lesson3
- 벤쿠버렌트
- 벤쿠버집구하기
- Lesson2
- 캐나다워홀
- binaray_gap
- FLEX5
- FK 설정
- Java
- codility
- database연결
- 파이도 환불
- 데이터의 무결성
- 엔테크서비스
- 레노보노트북
- Today
- Total
대충이라도 하자
Docker 본문
1. What is docker?
- A platform for building, running and shipping applications
*** 가끔 application이 작동하지 않을 수 있음
- configuration
- some files are missing
- software version mismatch
-> To resolve this, docker is needed!
Consistently, build, run and ship applications
2. Containers Vs VM
Container
- An isolated environment for running an application
- allow running multiple apps in isolation
- are lightweight
- use os of the host
- start quickly
- need less hardware resources
VM
- An abstraction of a machine (physical hardware)
- slow to start
- Each VMm needs a full-blown OS
- resource intensive
3. Docker Architecture
4. Development workflow
Image
- a cut-down os
- a runtime environment
- application files
- third-party libraries
- environment variables
docker는 image파일이 있으면, container에게 그 이미지를 사용해서 start하라고 알려줌
container는 process같은 것
'꼬꼬마 개발자 노트' 카테고리의 다른 글
docker ps 시, permission denied 오류 (0) | 2023.01.05 |
---|---|
멱등(Idempotent) (0) | 2022.04.24 |
API 설계 (0) | 2022.02.09 |
Stateless & Connectionless (0) | 2022.01.27 |
Elasticsearch 설치 및 사용 (Windows) (0) | 2022.01.18 |