Docker CE for Ubuntu 18.04
Docer CEをUbuntu 18.04にインストールする 公式ドキュメント インストール手順は公式ドキュメント通り 以下は実際に実行したhistory 348 apt search docker 349 sudo apt-get remove docker docker-engine docker.io 350 ls -l /var/lib/do 351 ls -l /var/lib/docker 352 uname -a 353 sudo apt-get update 354 sudo apt-get install apt-transport-https ca-certificates curl software-properties-common 355 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 356 sudo apt-key fingerprint 0EBFCD88 357 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ 358 $(lsb_release -cs) \ 359 stable" 360 sudo apt-get update 361 sudo apt-get install docker-ce 362 apt-cache madison docker-ce 363 sudo docker run hello-world Written with StackEdit .