想学习docker,Jenkins,使用vm安装了一个Ubuntu
参考https://docs.docker.com/engine/install/ubuntu/
https://www.runoob.com/docker/ubuntu-docker-install.html
想要使用脚本自动安装,对Ubuntu系统有要求,比较老的版本已经停止维护了
安装14.04LTS,发现已经不支持了,
安装20.04LTS,使用桥接模式发现联网比较麻烦
安装18.04LTS,安装成功使用桥接模式自动连接网络成功。
更新 apt 包索引
$ sudo apt-get update
安装 apt 依赖包
$ sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
使用官方安装脚本自动安装
$ curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun