728x90
[Docker] ubuntu 22.04 docker 설치
https://docs.docker.com/engine/install/ubuntu/
자세한 설치 방법은 공식 문서에서 확인
Ubuntu 패키지 설치
sudo apt update -y
sudo apt-get install apt-transport-https \
ca-certificates curl gnupg-agent software-properties-common -y
GPG키 추가
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
apt 저장소 추가
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
Docker 설치
sudo apt update -y
sudo apt-get install docker-ce docker-ce-cli containerd.io -y
sudo systemctl status docker
Docker-compose 설치 (옵션)
sudo apt install docker-compose -y
반응형
'🐳 Container > Docker' 카테고리의 다른 글
[Docker] 도커 명령어 권한 설정하기 (0) | 2024.05.20 |
---|---|
[Docker] Docker 이미지 빌드를 위한 Makefile 활용 방법 (0) | 2024.02.14 |
[Docker] 도커 네트워크 (0) | 2023.08.17 |
[Docker] 컨테이너 리소스 (0) | 2023.08.09 |
[Docker] 도커 스토리지 볼륨 마운트 (0) | 2023.05.22 |