본문 바로가기

개발/시스템

우분투(Ubuntu) 18.04 도커(Docker) 설치

우분투(Ubuntu) 18.04 버전에서 도커(Docker)를 설치합니다.

 

Step 1

sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt update
apt-cache policy docker-ce

명령어를 입력하게 되면 다음 메시지가 출력됩니다.

 

Step 2

docker-ce:
  Installed: (none)

Installed none 에서 도커가 설치되지 않았음을 확인할 수 있습니다.
다음 명령어로 도커를 설치할 수 있습니다.

sudo apt install docker-ce

다음 명령어로 도커가 정상적으로 실행 중인지 확인할 수 있습니다.

sudo systemctl status docker

위 명령어 입력 시 아래와 같은 메시지가 출력됩니다.

petrucio@swlee-laptop:~/문서/sengwoolee_devsite$ sudo systemctl status docker
● docker.service - Docker Application Container Engine
   Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
   Active: active (running) since Sun 2020-03-29 14:45:41 KST; 28min ago
     Docs: https://docs.docker.com
 Main PID: 1858 (dockerd)
    Tasks: 13
   CGroup: /system.slice/docker.service
           └─1858 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
반응형