星河避难所

返回

自动部署

Docker 一键部署,开箱即用,几步就能启动机器人和积分系统,适合想快速上手的用户

一键部署#

登陆你的服务器,在上面执行

curl -fsSL https://bilibili-danmu-scripts.oss-cn-hongkong.aliyuncs.com/install-docker.sh | bash
bash

之后等几分钟后你就能拿到机器人控制台的访问地址了,通常是 http://服务器IP:7777

打开后会先弹出一个账号密码的设置框。这里你填的账号密码会作为今后访问机器人控制台的第一道防线,所以随便填可以,但最好自己记得住。

他做了什么?#

一键部署会在服务器上自动完成下面这些操作

一般你不用关心细节,但如果你想知道它到底做了什么,或者想自己手动执行,不通过一键脚本,也可以参考下面的内容

更新软件源#

sudo apt update
bash
sudo apt upgrade -y
bash
sudo apt install apt-transport-https ca-certificates curl software-properties-common
bash
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
bash
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
bash
sudo apt update
bash

安装 Docker#

sudo apt install docker-ce docker-ce-cli containerd.io docker-compose
bash
sudo systemctl start docker
bash
sudo systemctl enable docker
bash
sudo docker --version
bash

构建 Docker#

git clone https://github.com/zxc7563598/php-bilibili-danmu-docker.git /opt/bilibili-robots
bash
cd /opt/bilibili-robots
bash
sh ./setup.sh
bash
docker-compose build
bash
docker-compose up -d
bash

要如何绑定域名#

curl -fsSL https://bilibili-danmu-scripts.oss-cn-hongkong.aliyuncs.com/setup-nginx-ssl.sh | bash -s 后台地址 积分商城地址 你的邮箱
bash

完成后前往机器人控制台,修改项目地址为后台域名,修改商城地址为商城后保存。

添加域名

后续即可通过域名访问项目。

他做了什么?#

安装 Nginx#

sudo apt update
bash
sudo apt install nginx
bash

配置 Nginx#

/etc/nginx/conf.d 目录中创建 .conf 配置文件并填入以下内容

server {
    listen 80;
    server_name 机器人控制台域名;

    location / {
        proxy_pass http://localhost:7777;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }
}
server {
    listen 80;
    server_name 积分商城域名;

    location / {
        proxy_pass http://localhost:5177;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }
}
plaintext

重启 Nginx#

sudo nginx -t
bash
sudo systemctl reload nginx
bash

申请证书#

sudo apt install certbot python3-certbot-nginx
bash
sudo certbot --nginx -d 域名1 -d 域名2
bash

之后根据提示,输入你的邮箱,然后一路Y下去就好了

后续:重启项目#

连接服务器,前往 /opt/bilibili-robots 目录执行

cd /opt/bilibili-robots
bash
docker-compose restart
bash
评论似乎卡住了,尝试刷新?✨