Ubuntu 19.04(Disco)およびUbuntu 19.10(Eoan)
docker-ce
まだubuntu 19.10では利用できませんが、eoan
パッケージをインストールできます。
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 disco stable"
Ubuntu 18.10(コスミック)
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 test"
Ubuntu 18.04(バイオニック)
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"
Ubuntu 17.10
docker-ce
パッケージは公式docker(Ubutu Artful)リポジトリから入手できます。これをインストールするには、次のコマンドを使用します。
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 artful stable"
Ubuntu 16.04
docker-ce
Ubuntu 16.04に次のようにインストールできます。
sudo apt-get 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 xenial stable"
以下を実行します。
apt-cache search docker-ce
サンプル出力:
docker-ce - Docker: the open-source application container engine
インストールdocker-ce
:
sudo apt install docker-ce
Docker、OS要件
apt-get update
リポジトリを追加した後に実行しましたか?