ubuntu16.04下安装docker
Posted falsh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu16.04下安装docker相关的知识,希望对你有一定的参考价值。
#sudo apt-get remove docker docker-engine docker-ce docker.io
#sudo apt-get update
#sudo apt-get install -y 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 $(lsb_release -cs) stable"
#sudo apt-get update
#sudo apt-get install -y docker-ce
#systemctl status docker
#sudo systemctl restart docker
#vim /etc/docker/daemon.json
{
"registry-mirrors": ["https://registry.docker-cn.com"]
}
#apt -y install python-pip
#pip install docker-compose
#pip install --upgrade pip
以上是关于ubuntu16.04下安装docker的主要内容,如果未能解决你的问题,请参考以下文章