공식 문서를 참고해서 Ubuntu에 Docker를 설치했다.
1. Docker의 apt 저장소를 설정한다.
# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl gnupg
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
# Add the repository to Apt sources:
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] 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
2. Docker package를 설치한다.
최신 버전으로 설치했다.
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
3. Docker가 성공적으로 설치되었는지 확인한다.
hello-world 이미지를 다운로드 하고 컨테이너를 실행하는 명령어다.
성공 시 로그가 출력되고 컨테이너가 자동으로 종료될 것이다.
sudo docker run hello-world
참고 👇👇
https://docs.docker.com/engine/install/ubuntu/
반응형
'DevOps > Docker' 카테고리의 다른 글
[Error] Unable to access jarfile home/ubuntu/{jar파일명}.jar (0) | 2024.01.07 |
---|---|
COPY ${JAR_FILE} app.jarWhen using COPY with more than one source file, the destination must be a directory and end with a / (0) | 2023.05.05 |
[Error] docker endpoint for "default" not found (0) | 2023.05.02 |
Docker (0) | 2023.04.19 |
Docker Compose (0) | 2022.05.05 |