마짱짱의 지식창고
Ubuntu 18.04 Docker install (도커 설치하기) 본문
반응형
쿠버네티스를 하기위해 Docker부터 설치
* 테스트환경
Virtualbox 6.1.18
Ubuntu 18.04
CPU 2, RAM 4096
Storage 20G
마스터1대+워커3대 = 총 4대 동시에 진행
*OS 설치후 모든 VM은 swap메모리 허용하지 않기
-> 메모리스왑이 활성화 되어있을시 성능이 일관되지 않기 때문이다.
swappoff -a
1. 필수패키지 설치
$ sudo apt-get update
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
패키지 설명
apt-transport-https : 패키지관리자가 https를 통해 데이터 및 패키지에 접근
ca-certificates : SSL의 기반 앱이 SSL 연결이 되어 있는지 확인
curl : 서버와 통신하기위해 사용
software-properties-common : PPA를 추가하거나 제거한다.
* PPA?
Personal Package Archive, 즉 개인패키지저장소
2. GPG Key 등록
$ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
3. Repository 등록
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
4. Docker 설치
$ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
$ sudo systemctl enable docker
$ docker -v
Docker version 20.10.3, build 48d30b5
---출처
반응형
'Kubernetes' 카테고리의 다른 글
[k8s] docker, kubeadm, Calico 설치 (0) | 2022.03.23 |
---|---|
[K8s] drain, cordon, taint 비교 (0) | 2021.03.25 |
Ubuntu 18.04 Kubeadm & Calico 구성하기 (0) | 2021.03.12 |
[Kubernetes] WorkLoad - Pod (0) | 2020.07.22 |
Kubernetes? 쿠버네티스? (0) | 2020.07.21 |