Docker & Kubernetes/도커 / / 2023. 5. 31. 14:27

Docker 설치 방법

반응형

https://docs.docker.com/engine/install/

 

Install

Learn how to choose the best method for you to install Docker Engine. This client-server application is available on Linux, Mac, Windows, and as a static binary.

docs.docker.com

 

공식사이트에 OS별로 Docker를 설치하는 방법이 나와있다.

 

이 포스팅에서는 Ubuntu에 설치를 할건데, 4가지 방법 중 apt 저장소로 설치할거다.

 

 

 

 

 

Install using the apt repository 부분 참고.

 

 

 

아래는 2023년에 설치한 기록이니 될수있으면 공식문서를 참고해서 설치하자.

 

 

 

 

 


 

 

 

 

1. 버전 확인

최신 버전의 커널을 사용하고 있는지 확인(3.10 버전 이상을 사용해야 도커 컨테이너를 정상적으로 사용 가능)

uname -r

 

 

 

2. 패키지 업데이트 & 설치

https를 사용해서 레포지토리를 사용할 수 있도록 필요한 패키지를 설치

sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common

 

 

3. GPG키 추가 & 등록 확인

Docker 공식 리포지토리에서 패키지를 다운로드 받았을 때 위변조 확인을 위한 GPG 키를 추가

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
apt-key fingerprint

 

 

4. 리포지토리 등록

Docker 공식 저장소를 리포지토리로 등록

add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
grep docker /etc/apt/sources.list

 

 

5. 리포지토리 정보 갱신 후 docker 설치

apt-get update
apt-get install -y docker-ce

 

 

6. docker service 확인

systemctlstatus docker
docker version

 

 

 

 

반응형
  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유