꿈꾸는 시스템 디자이너

Ubuntu에 Docker 설치 방법 | How to install Docker on Ubuntu 본문

Development/Cloud computing

Ubuntu에 Docker 설치 방법 | How to install Docker on Ubuntu

독행소년 2020. 5. 26. 10:31

 

이번 시간에는 Lightsail의 Ubuntu 18.04에서 Docker를 설치하는 방법에 대해서 알아본다. 본 포스팅은 Docker 공신 문서를 참고하여 작성되었다.

 

https://docs.docker.com/engine/install/ubuntu/

 

Install Docker Engine on Ubuntu

To get started with Docker Engine on Ubuntu, make sure you meet the prerequisites, then install Docker. Prerequisites OS requirements To install Docker Engine, you need the 64-bit version of...

docs.docker.com

 

우분투 머신을 준비하기 위해 본인은 Lightsail에서 5불짜리 인스턴스를 하나 준비했다.

 

Docker 설치전에 호스트 머신의 패지키를 업데이트하고 필요한 패키지들을 설치한다.(대부분 기본 설치되어 있다.)

$> sudo apt-get update
$> sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common

 

Docker의 공식 GPG 키를 추가한다.

$> curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

 

키가 등록되었는지 확인해보자.

ubuntu@here4you:~$ sudo apt-key fingerprint 0EBFCD88
pub   rsa4096 2017-02-22 [SCEA]
      9DC8 5822 9FC7 DD38 854A  E2D8 8D81 803C 0EBF CD88
uid           [ unknown] Docker Release (CE deb) <docker@docker.com>
sub   rsa4096 2017-02-22 [S]

 

Docker의 저장소를 추가한다.

$> sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

 

Docker를 설치한다.

$> sudo apt-get update
$> sudo apt-get install docker-ce docker-ce-cli containerd.io

 

Docker 설치여부를 확인한다.

ubuntu@here4you:~$ sudo docker -v
Docker version 19.03.9, build 9d988398e7
ubuntu@here4you:~$

 

버전 정보가 확인되면 정상 설치된 것이다.

Comments