安装Docker环境的两种方式
方式一:在线安装
前提:服务器能访问到外网
直接通过 Linux 操作系统上的包管理工具进行安装(例如centos的yum,ubuntu的apt),在安装之前需要先添加对应的源。
-
docker 提供的官方源:https://docs.docker.com/engine/install/
-
清华镜像源:https://mirrors.tuna.tsinghua.edu.cn/help/docker-ce/
例如:centos安装docker
sudo yum install -y docker-ce
方式二:离线安装
Docker
是采用Golang
开发而来的,所以官方提供了静态编译的二进制文件,只需要下载对应的二进制包,然后解压到指定目录下即可。
-
安装链接:https://docs.docker.com/engine/install/binaries/
-
官方下载链接:https://download.docker.com/linux/static/
-
清华源下载地址:https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/static/stable/
-
阿里源下载地址:https://mirrors.aliyun.com/docker-ce/linux/static/stable/