ubuntu16.04中docker旧版本卸载,脚本安装新版本

docker-engine(docker-ce)使用脚本自动安装

Docker 官方一键安装脚本(Ubuntu 和 Debian 系统):

Uninstall old versions: sudo apt-get remove docker docker-engine docker-ce docker.io

curl -sSL https://get.docker.com/ | sh

若网络错误,plan B:

阿里云的安装脚本:
curl -sSL http://acs-public-mirror.oss-cn-hangzhou.aliyuncs.com/docker-engine/internet | sh -

On production systems, you should install a specific version of Docker CE instead of always using the latest. This output is truncated. List the available versions.

$ apt-cache madison docker-ce

下一步使用命令免sudo 使用docker
http://blog.csdn.net/sannerlittle/article/details/76679121

你可能感兴趣的:(docker,ubuntu-配置)