Install docker(VPS)

VPS 快速安装 Docker 服务

建站一般采用 LNMP 脚本 或某塔工具,而本文采用的是 Docker 方式

请根据自身服务器系统进行安装,下为参考示例

1)更新系统并安装基本工具

1
2
3
4
5
# Ubuntu
$ apt-get update && apt-get install -y wget vim

# CentOS
$ yum -y update && yum -y install wget vim

2)安装 Docker

1
2
3
# 如使用国内云服务器请自行选择国内源安装方式
$ curl -sSL https://get.docker.com/ | sh
$ systemctl enable --now docker

3)安装 Docker-compose

$ curl -L "https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
$ chmod +x /usr/local/bin/docker-compose

示例参考

1
2
3
4
5
6
# 国外机器
$ curl -sSL https://get.docker.com/ | sh
# 同内机器
$ curl -sSL https://get.daocloud.io/docker | sh

$ systemctl enable --now docker
1
2
3
4
5
6
7
# 国外机器
$ sudo curl -L "https://github.com/docker/compose/releases/download/v2.16.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
$ sudo chmod +x /usr/local/bin/docker-compose

# 国内机器
$ curl -L https://get.daocloud.io/docker/compose/releases/download/v2.1.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
$ chmod +x /usr/local/bin/docker-compose