2023-11-22 01:01:58 -05:00
|
|
|
|
## Docker-Compose 部署教程
|
|
|
|
|
本文教你如何在命令行使用aapanel + docker-compose来快速Xboard
|
|
|
|
|
|
|
|
|
|
### 部署
|
2023-11-22 02:52:07 -05:00
|
|
|
|
1. 安装aaPanel + 和docker
|
2023-11-22 01:01:58 -05:00
|
|
|
|
```
|
2024-03-20 06:47:28 -04:00
|
|
|
|
# 安装Docker
|
|
|
|
|
curl -sSL https://get.docker.com | bash
|
2024-11-08 15:13:45 -05:00
|
|
|
|
# Centos系统可能还需要执行下面命令来启动Docker
|
2024-03-20 06:47:28 -04:00
|
|
|
|
systemctl enable docker
|
|
|
|
|
systemctl start docker
|
|
|
|
|
```
|
|
|
|
|
```
|
|
|
|
|
# 安装宝塔
|
2024-03-12 17:23:35 -04:00
|
|
|
|
URL=https://www.aapanel.com/script/install_6.0_en.sh && if [ -f /usr/bin/curl ];then curl -ksSO "$URL" ;else wget --no-check-certificate -O install_6.0_en.sh "$URL";fi;bash install_6.0_en.sh aapanel
|
2023-11-22 01:01:58 -05:00
|
|
|
|
```
|
|
|
|
|
|
2024-03-20 06:47:28 -04:00
|
|
|
|
安装完成后我们登陆 aaPanel 进行环境的安装。
|
2023-11-22 01:01:58 -05:00
|
|
|
|
2. 选择使用LNMP的环境安装方式勾选如下信息
|
|
|
|
|
☑️ Nginx 任意版本
|
|
|
|
|
☑️ MySQL 5.7
|
|
|
|
|
选择 Fast 快速编译后进行安装。
|
2023-11-22 02:52:07 -05:00
|
|
|
|
|
2023-11-22 01:01:58 -05:00
|
|
|
|
<span style="color:yellow">⚠️ :无需安装php 与 redis</span>
|
|
|
|
|
|
|
|
|
|
3. 添加站点
|
|
|
|
|
>aaPanel 面板 > Website > Add site。
|
|
|
|
|
>>在 Domain 填入你指向服务器的域名
|
|
|
|
|
>>在 Database 选择MySQL
|
|
|
|
|
>>在 PHP Verison 选择纯静态
|
|
|
|
|
|
2023-11-23 00:28:38 -05:00
|
|
|
|
4. 安装 Xborad
|
2023-11-22 01:01:58 -05:00
|
|
|
|
>通过SSH登录到服务器后访问站点路径如:/www/wwwroot/你的站点域名。
|
|
|
|
|
>以下命令都需要在站点目录进行执行。
|
|
|
|
|
```
|
|
|
|
|
# 删除目录下文件
|
|
|
|
|
chattr -i .user.ini
|
2024-07-15 14:25:49 -04:00
|
|
|
|
rm -rf .htaccess 404.html 502.html index.html .user.ini
|
2023-11-22 01:01:58 -05:00
|
|
|
|
```
|
|
|
|
|
> 执行命令从 Github 克隆到当前目录。
|
|
|
|
|
```
|
2025-01-15 20:58:04 -05:00
|
|
|
|
git clone -b legacy https://github.com/cedar2025/Xboard.git ./
|
2023-11-22 01:01:58 -05:00
|
|
|
|
```
|
2023-11-23 00:28:38 -05:00
|
|
|
|
> 复制一份docker-compose.yaml文件
|
|
|
|
|
```
|
2023-11-23 01:05:38 -05:00
|
|
|
|
cp docker-compose.sample.yaml docker-compose.yaml
|
2023-11-23 00:28:38 -05:00
|
|
|
|
```
|
2023-11-22 01:01:58 -05:00
|
|
|
|
> 执行命令安装依赖包以及Xboard
|
|
|
|
|
```
|
|
|
|
|
docker compose run -it --rm xboard sh init.sh
|
|
|
|
|
```
|
2023-12-07 19:53:19 -05:00
|
|
|
|
> 根据提示完成安装
|
2023-11-22 01:01:58 -05:00
|
|
|
|
> 执行这条命令之后,会返回你的后台地址和管理员账号密码(你需要记录下来)
|
|
|
|
|
> 你需要执行下面的 **启动xborad** 步骤之后才能访问后台
|
|
|
|
|
|
2023-11-23 00:28:38 -05:00
|
|
|
|
5. 启动xboard
|
2023-11-22 01:01:58 -05:00
|
|
|
|
```
|
|
|
|
|
docker compose up -d
|
|
|
|
|
```
|
2023-11-23 00:28:38 -05:00
|
|
|
|
6. 设置反向代理
|
2023-11-22 01:01:58 -05:00
|
|
|
|
> 站点设置 > 反向代理 > 添加反向代理
|
|
|
|
|
>> 在 **代理名称** 填入 Xboard
|
|
|
|
|
>> 在 **目标URL** 填入 ```http://127.0.0.1:7001```
|
2023-12-08 07:33:10 -05:00
|
|
|
|
>> 修改反向代理规则为:
|
|
|
|
|
```
|
|
|
|
|
location ^~ / {
|
|
|
|
|
proxy_pass http://127.0.0.1:7001;
|
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
proxy_set_header Connection "";
|
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
|
proxy_set_header X-Real-PORT $remote_port;
|
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
|
proxy_set_header Scheme $scheme;
|
|
|
|
|
proxy_set_header Server-Protocol $server_protocol;
|
|
|
|
|
proxy_set_header Server-Name $server_name;
|
|
|
|
|
proxy_set_header Server-Addr $server_addr;
|
|
|
|
|
proxy_set_header Server-Port $server_port;
|
2024-03-20 06:47:28 -04:00
|
|
|
|
proxy_cache off;
|
2023-12-08 07:33:10 -05:00
|
|
|
|
}
|
|
|
|
|
```
|
2023-11-22 01:01:58 -05:00
|
|
|
|
|
2024-10-19 11:17:22 -04:00
|
|
|
|
🎉: 到这里,你可以已经可以通过域名访问你的站点了
|
|
|
|
|
|
|
|
|
|
⚠️: 请务必开启防火墙防止7001端口暴露到公网当中。
|
2023-11-22 01:01:58 -05:00
|
|
|
|
|
|
|
|
|
### 更新
|
|
|
|
|
1. 更新代码
|
|
|
|
|
>通过SSH登录到服务器后访问站点路径如:/www/wwwroot/你的站点域名。
|
|
|
|
|
>以下命令都需要在站点目录进行执行。
|
|
|
|
|
```
|
2024-05-17 12:23:00 -04:00
|
|
|
|
docker compose pull
|
2023-11-23 22:23:49 -05:00
|
|
|
|
docker compose run -it --rm xboard sh update.sh
|
2023-11-22 01:01:58 -05:00
|
|
|
|
```
|
|
|
|
|
2. 重启Xboard
|
|
|
|
|
```
|
2025-01-12 18:57:07 -05:00
|
|
|
|
docker compose restart
|
2023-11-22 01:01:58 -05:00
|
|
|
|
```
|
2023-11-25 22:56:44 -05:00
|
|
|
|
🎉: 在此你已完成Xboard的更新
|
|
|
|
|
|
|
|
|
|
### 注意
|
2024-07-15 14:25:49 -04:00
|
|
|
|
启用webman后做的任何代码修改都需要重启生效
|