메뉴 닫기

Rocky Linux 9에 Docker 설치하는 방법

[ Rocky Linux 9에 Docker 설치하는 방법 ]

Rocky Linux 9에 Docker 설치하는 방법Rocky Linux 9을 사용하는 경우 Docker를 설치하는 것은 CentOS나 Ubuntu와는 조금 다를 수 있습니다. Rocky Linux 9에 Docker 설치하기 위해선 몇 가지 추가 단계가 필요합니다.

 
 
  • 먼저, Rocky Linux 9의 패키지를 업데이트합니다.
  • 그런 다음, Docker를 설치하기 위해 Docker의 공식 저장소를 시스템에 추가합니다.
  • Docker CE (Community Edition)를 설치하기 위해 필요한 패키지를 설치합니다.
  • Docker 서비스를 시작하고 부팅 시 자동으로 시작하도록 설정합니다.

 

[ 설치 환경 ]

OS : Rocky Linux 9.3
 
 

[ 패키지 업데이트 및 기본 패키지 설치 ]

# dnf update -y

# dnf upgrade -y

# dnf group install “Base” -y

 
 

[ Docker의 공식 저장소를 시스템에 추가 ]

도커 공식 홈페이지

# dnf check-update

# dnf config-manager –add-repo https://download.docker.com/linux/centos/docker-ce.repo

 
저장소 추가를 안하면 다음과 같은 오류가 발생합니다.

# dnf install -y docker-ce docker-ce-cli containerd.io

Rocky Linux 9 – BaseOS 28 kB/s | 4.1 kB 00:00
Rocky Linux 9 – BaseOS 275 kB/s | 2.2 MB 00:08
Rocky Linux 9 – AppStream 31 kB/s | 4.5 kB 00:00
Rocky Linux 9 – AppStream 431 kB/s | 7.9 MB 00:18
Rocky Linux 9 – Extras 22 kB/s | 2.9 kB 00:00
No match for argument: docker-ce
No match for argument: docker-ce-cli
No match for argument: containerd.io
Error: Unable to find a match: docker-ce docker-ce-cli containerd.io
[root@test ~]# dnf install -y docker docker-compose
Last metadata expiration check: 0:00:34 ago on Sat Jun 15 02:59:33 2024.
No match for argument: docker-compose
Error: Unable to find a match: docker-compose

 

[ Docker 설치 및 설치 확인 ]

# dnf install -y docker-ce docker-ce-cli containerd.io

# dnf list installed | grep docker

 

# dnf list installed | grep docker
containerd.io.x86_64 1.6.33-3.1.el9 @docker-ce-stable
docker-buildx-plugin.x86_64 0.14.1-1.el9 @docker-ce-stable
docker-ce.x86_64 3:26.1.4-1.el9 @docker-ce-stable
docker-ce-cli.x86_64 1:26.1.4-1.el9 @docker-ce-stable
docker-ce-rootless-extras.x86_64 26.1.4-1.el9 @docker-ce-stable
docker-compose-plugin.x86_64 2.27.1-1.el9 @docker-ce-stable
 

[ Docker 서비스를 시작하고 부팅 시 자동 시작 설정 ]

# systemctl start docker

# systemctl status docker

# systemctl enable docker

 

 
 
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x