|
|
@@ -1,3 +1,37 @@
|
|
|
# 部署
|
|
|
|
|
|
-- [代理节点](proxy.md)
|
|
|
+> 所有脚本均只在`Debian 11/12`上测试,其TA系统需自行转换命令。
|
|
|
+
|
|
|
+# 安装Docker
|
|
|
+
|
|
|
+> 如果已安装请跳过
|
|
|
+
|
|
|
+```
|
|
|
+apt update
|
|
|
+apt install -y ca-certificates curl
|
|
|
+install -m 0755 -d /etc/apt/keyrings
|
|
|
+curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
|
|
|
+chmod a+r /etc/apt/keyrings/docker.asc
|
|
|
+
|
|
|
+echo \
|
|
|
+ "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
|
|
|
+ $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
|
|
|
+ tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
|
+apt update
|
|
|
+apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
|
|
+systemctl enable docker
|
|
|
+systemctl restart docker
|
|
|
+
|
|
|
+docker network create local
|
|
|
+```
|
|
|
+
|
|
|
+# clone & cd deploy
|
|
|
+
|
|
|
+```
|
|
|
+git clone https://git.himeeter.com/glass/deploy.git
|
|
|
+cd deploy/
|
|
|
+```
|
|
|
+
|
|
|
+# 代理节点
|
|
|
+
|
|
|
+- [Nginx](nginx.md)
|