更新Docker使用文档

This commit is contained in:
WolfBolin 2021-11-06 19:18:50 +08:00
parent dd3f8ef482
commit 545a593fa9
2 changed files with 49 additions and 4 deletions

View File

@ -60,6 +60,55 @@
7. **此时Cookie已经复制到你的粘贴板上了** 7. **此时Cookie已经复制到你的粘贴板上了**
## 使用Docker运行
Docker的运行脚本基于Linux平台编写暂未在Win平台测试。
将本项目Clone至本地后请先按照上述步骤添加或修改配置文件。随后运行`make-docker.sh`脚本本地构建Docker镜像同时初次运行容器。
```shell
sh make-docker.sh
```
或手动执行
```
# 编译容器
docker build -f Dockerfile --tag ${docker_name}:"${time_now}" .
```
```
# 运行容器(默认自动多配置文件)
docker run -itd \
--name ${docker_name} \
--log-opt max-size=1m \
-v $(pwd):/var/app \
${docker_name}:"${time_now}"
# 运行容器直接运行main.py
docker run -itd \
--name ${docker_name} \
--log-opt max-size=1m \
-v $(pwd):/var/app \
-e MULTI=FALSE \
${docker_name}:"${time_now}"
```
若需要添加配置文件或修改配置文件可直接在主机config文件夹中修改修改的内容将实时同步在容器中。
若需要再次运行签到脚本可手动重启容器。每次运行Docker容器后容器内将自动按照参数执行签到活动签到完成后容器将自动停止运行。
```
docker restart ${docker_name} && docker logs -f ${docker_name}
```
关于每日定时,用户可在容器外部设计定时触发(启动)程序,每日定时运行脚本。
(若有需要可自行编写相关脚本通知完成状态
## 使用的第三方库 ## 使用的第三方库
requests: [github](https://github.com/psf/requests) [pypi](https://pypi.org/project/requests/) requests: [github](https://github.com/psf/requests) [pypi](https://pypi.org/project/requests/)

View File

@ -1,4 +0,0 @@
#!/bin/bash
docker_name="mihoyo-bbs"
docker restart ${docker_name}
docker logs -f ${docker_name}