OS/Linux

[Ubuntu] Docker 설치하기

감동 2020. 11. 13. 15:04
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 

 

sudo systemctl status docker

docker --version

 

*참고사이트 

1. 코스모팜 블로그 :
  blog.cosmosfarm.com/archives/248/%EC%9A%B0%EB%B6%84%ED%88%AC-18-04-%EB%8F%84%EC%BB%A4-docker-%EC%84%A4%EC%B9%98-%EB%B0%A9%EB%B2%95/

 

반응형