들어가기
음 docker는 상당히 편리한 녀석이다.
VitualBox에 설치된 Ubuntu1804에 docker를 설치 해보려한다.
솔직히 이게 재대로 될지 잘 모르지만, 일단 해보자.
별거 없다. 아래 명령어를 한줄 한줄 주욱 입력해주자.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| 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 apt install docker-ce
sudo systemctl status docker
|
참고자료
[https://blog.cosmosfarm.com/archives/248/우분투-18-04-도커-docker-설치-방법/](