🐳 Container/Docker
[Docker] ubuntu 22.04 docker 설치
heywantodo
2023. 10. 6. 10:48
728x90
반응형
[Docker] ubuntu 22.04 docker 설치
https://docs.docker.com/engine/install/ubuntu/
Install Docker Engine on Ubuntu
Jumpstart your client-side server applications with Docker Engine on Ubuntu. This guide details prerequisites and multiple methods to install.
docs.docker.com
자세한 설치 방법은 공식 문서에서 확인
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
728x90
반응형