Docker for Ubuntu インストール

古いバージョンのDockerを削除

 sudo apt-get remove docker docker-engine docker.io containerd runc

apt アップデート

 sudo apt update

Install packages to allow apt to use a repository over HTTPS

 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 -

DOCKER CEのインストール

 sudo apt-get update

Dockerの動作テスト

 sudo docker run hello-world

参考

https://docs.docker.com/install/linux/docker-ce/ubuntu/


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS