1. 시스템 업데이트
sudo apt-get update
2. 의존성 패키지 설치
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
3. 도커 공식 gpg 키 추가
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
4. 도커 apt 레포지토리 추가
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
5. 도커 설치
-> 패키지 업데이트 후 도커설치
sudo apt update
sudo apt install docker-ce
6. 도커 서비스 실행 및 활성화
sudo systemctl start docker
sudo systemctl enable docker
7. 도커 버전확인
sudo docker version
'기타 > Linux' 카테고리의 다른 글
[ubuntu] ubuntu에 docker 설치하기 (0) | 2024.08.26 |
---|---|
[ubuntu] VM을 NFS 서버로 구축, vm간 통신 (0) | 2024.08.22 |
[ubuntu] 현재 사용자에게 권한 부여 (feat. kubectl) (0) | 2024.08.21 |
[ubuntu] ubuntu 22.04.lts에 원하는 노드버전 설치하기 (feat: nvm) (0) | 2024.08.17 |
우분투(Ubuntu) 가상머신 설치하기 Feat.버츄얼박스(VirtualBox) (0) | 2024.06.29 |