반응형
https://docs.docker.com/engine/install/
공식사이트에 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
반응형
'Docker & Kubernetes > 도커' 카테고리의 다른 글
Ubuntu에 Harbor 설치 및 https 연결(MacOS) (0) | 2024.01.10 |
---|---|
Dockerfile build, Docker Hub에 푸시하는 방법 (0) | 2023.05.25 |