sh 在ubuntu 15.10上安装docker

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 在ubuntu 15.10上安装docker相关的知识,希望对你有一定的参考价值。

sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
sudo sh -c "echo 'deb https://apt.dockerproject.org/repo ubuntu-wily main' > /etc/apt/sources.list.d/docker.list"
sudo apt-get update
sudo apt-get install -y linux-image-extra-$(uname -r)
sudo apt-get update
sudo apt-get install -y docker-engine

sudo usermod -aG docker <username> # no sudo
sudo systemctl enable docker # autostart
sudo service docker start 

# check the installation
docker run hello-world


以上是关于sh 在ubuntu 15.10上安装docker的主要内容,如果未能解决你的问题,请参考以下文章

sh 在ubuntu 15.10上安装lampstack

sh 易于安装openresty(在Ubuntu 14.04,15.10和16.04上使用和测试)

sh 易于安装openresty和NVM(在Ubuntu 14.04,15.10和16.04上使用和测试)

sh Ubuntu设置为15.10

在 Ubuntu 15.10 上使用 pip 安装模块时出错

转载Ubuntu 系列安装 Docker