
介绍
wxchat可以实现 NAS没有公网V4情况,企业微信的通知进行代理转发,需通过带公网V4 IP地址的 VPS部署。
Docker Run
docker run -d \
--name wxchat \
--restart=always \
-p 8080:80 \
ddsderek/wxchat:latestDocker Compose
version: '3.3'
services:
wxchat:
container_name: wxchat
restart: always
ports:
- '8080:80'
image: 'ddsderek/wxchat:latest'前面的 8080 端口修改成自己想要的端口,直接启动即可!