일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프론트엔드
- 머신러닝
- 쿠버네티스
- 리액트
- 빅쿼리
- DBSCAN
- bigquery
- Kubernetes
- 대감집
- 캐글
- frontend
- r
- 차원 축소
- React
- LDA
- TooBigToInnovate
- Kaggle
- Machine Learning
- 최적화
- 대감집 체험기
- python
- 구글
- 타입스크립트
- 심층신경망
- ADP 실기
- docker
- do it
- 파이썬
- ADP
- 클러스터링
- Today
- Total
No Story, No Ecstasy
Docker 관련 내용 본문
- Docker Storage Driver
1. aufs (the preferred storage driver for Docker 18.06 and older)
. 최초 드라이버
. Ubuntu/Debian에서만 지원
. 빠른 컨테이너 시작 시간, 효율적 스토리지/메모리 사용
. Bad Use Case: 높은 write 활동
2. overlay2 (the preferred storage driver, for all currently supported Linux distributions, 210108 기준)
. 최신 드라이버 (default option)
. 단순한 디자인
. aufs보다 덜 안정적인 대신 빠름
. 효율적 메모리 사용
. Bad Use Case: container 변경이 잦을때
*참고: docs.docker.com/storage/storagedriver/select-storage-driver/ / xoit.tistory.com/17
- Docker-related Packages
1. docker-ce: Docker daemon, this is the part that does all the management work, requires the other two on Linux
2. docker-ce-cli: CLI tools to control the daemon, you can install them on their own if you want to control a remote Docker daemon
3. containerd.io: daemon to interface with the OS API (in this case, LXC - Linux Containers), essentially decouples Docker from the OS, also provides container services for non-Docker container managers
'Shallow Series' 카테고리의 다른 글
React 기초 (0) | 2021.01.15 |
---|---|
쿠버네티스 오브젝트 ( Kubernetes Object ) (0) | 2021.01.09 |
쿠버네티스 클러스터 아키텍처 (0) | 2021.01.09 |
Kubernetes 관련 내용 (0) | 2021.01.08 |
[Ubuntu 20.04] 인터넷 문제 ( Network Unclaimed ) 해결 (26) | 2021.01.06 |