Ubuntu 简单安装 docker

想学习docker,Jenkins,使用vm安装了一个Ubuntu
参考https://docs.docker.com/engine/install/ubuntu/
https://www.runoob.com/docker/ubuntu-docker-install.html
想要使用脚本自动安装,对Ubuntu系统有要求,比较老的版本已经停止维护了
Ubuntu 简单安装 docker
安装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

上一篇:学习ASP.NET Core Razor 编程系列二——添加一个实体


下一篇:Ubuntu 18.04 LTS的网络经常变成问号导致网速很慢的解决办法