1
0
Fork 0
go-wxhelper/readme.md

108 lines
2.8 KiB
Markdown
Raw Permalink Normal View History

2023-10-27 14:59:43 +08:00
## 食用方式
0. 新建一个文件夹
```shell
mkdir wechat-hook # 名字随便写
cd wechat-hook
```
1. 创建配置文件`config.yaml`
```shell
mkdir config # 先创建一个文件夹保存配置文件,文件名不要变
vim config.yaml # 编辑配置文件内容如下最新配置请参考项目里的config.yaml文件
2023-10-27 14:59:43 +08:00
```
```yaml
# 微信HOOK配置
wechat:
# 微信HOOK接口地址
host: wechat:19088
2024-01-09 10:48:21 +08:00
# 微信容器映射出来的vnc页面地址没有就不填
vncUrl: http://192.168.1.175:19087/vnc_lite.html
2023-10-27 14:59:43 +08:00
# 是否在启动的时候自动设置hook服务的回调
autoSetCallback: true
2023-12-10 08:19:21 +08:00
# 回调IP如果是Docker运行本参数必填如果Docker修改了映射格式为 ip:port如果使用项目提供的docker-compsoe.yaml文件启动可以填`auto`
callback: auto
2023-10-27 14:59:43 +08:00
# 数据库
mysql:
host: mysql
port: 3306
user: wechat
password: wechat
db: wechat
task:
enable: false
syncFriends:
enable: true
cron: '0 * * * *'
waterGroup:
enable: true
cron:
yesterday: '30 9 * * *' # 每天9:30
week: '30 9 * * 1' # 每周一9:30
month: '30 9 1 * *' # 每月1号9:30
2023-10-27 14:59:43 +08:00
```
2. 创建`docker-compose.yaml`文件
```yaml
2023-10-31 15:12:15 +08:00
version: '3.9'
2023-10-27 14:59:43 +08:00
services:
wechat:
2024-02-26 15:30:40 +08:00
image: lxh01/wxhelper-docker:3.9.5.81-v11-novnc # 如果不用noVNC网页就删掉后面的-novnc
2023-10-27 14:59:43 +08:00
container_name: gw-wechat
restart: unless-stopped
2023-10-31 15:12:15 +08:00
environment:
- WINEDEBUG=fixme-all
2023-10-27 14:59:43 +08:00
volumes:
- ./data/wechat:/home/app/.wine/drive_c/users/app/Documents/WeChat\ Files
ports:
2024-02-26 15:24:42 +08:00
- "19086:5900" # vnc端口
- "19087:8080" # noVNC端口
- "19088:19088" # 微信HOOK端口
2023-10-31 14:51:34 +08:00
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:19088/api/checkLogin"]
interval: 60s
timeout: 10s
retries: 5
2023-10-27 14:59:43 +08:00
mysql:
image: mysql:8
container_name: gw-db
restart: unless-stopped
2023-10-31 14:51:34 +08:00
depends_on:
2023-10-31 15:12:15 +08:00
wechat:
condition: service_healthy
2023-10-27 14:59:43 +08:00
environment:
- MYSQL_ROOT_PASSWORD=wechat
- MYSQL_USER=wechat
- MYSQL_PASSWORD=wechat
- MYSQL_DATABASE=wechat
volumes:
- ./data/db:/var/lib/mysql
wxhelper:
image: gitee.ltd/lxh/go-wxhelper:latest
container_name: gw-service
restart: unless-stopped
2023-10-31 14:51:34 +08:00
depends_on:
- mysql
2023-10-27 14:59:43 +08:00
volumes:
# 配置文件请参阅项目根目录的config.yaml文件
- ./config/config.yaml:/app/config.yaml
ports:
- "19099:19099"
```
2023-09-26 14:29:41 +08:00
2023-10-31 15:14:58 +08:00
3. 启动
2023-09-26 14:29:41 +08:00
```shell
2023-10-27 14:59:43 +08:00
# 以下命令选个能用的就行
docker-compose up -d # 老版本
docker compose up -d # 新版本
2024-02-26 15:26:37 +08:00
```
## 注意事项
1. 宿主机必须是`debian`系,因为`wine`的玄学`BUG`,其他系统可能会出现各种问题
2. 登录微信可以用`vnc viewer`连接`5900`端口或者访问`noVNC`端口的`vnc_lite.html`页面进行扫码登录