원문 링크
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 Docker Engine on Ubuntu.
docs.docker.com
# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
# Add the repository to Apt sources:
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
우선 저장소 등록을 위해 복사 & 붙여넣기 실시
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y
설치 스크립트를 뙇!!!
이후 바로 도커 사용 가능!!
'Tool > Docker' 카테고리의 다른 글
[suricata |수리카타] 도커에 한방에 설치하기 (0) | 2024.04.06 |
---|---|
Failed to start Docker Application Container Engine (0) | 2024.02.28 |
도커 미사용 이미지 및 컨테이너 날려버리기~ (0) | 2024.02.01 |
도커에서 안드로이드 실행하기: 심층 가이드 (1) | 2024.01.28 |
Failed to get D-Bus connection: Operation not permitted (0) | 2024.01.24 |