ARM 适配docker wechat机器人

背景

原项目仅能运行x86机器上:https://github.com/tom-snow/docker-ComWechat

ARM服务器一枚,系统限制:ubuntu,debian系统有BUG

适配过程

下载docker-box-wine源码并构建镜像,基础wine镜像

git clone https://github.com/linrol/docker-box-wine.git
cd docker-box-wine
docker build -t docker-box-wine . 

下载docker-wechat源码(修改了原仓库Dockerfile中的from为docker-box-wine:latest)并构建,用于docker wechat的基础镜像

git clone https://github.com/linrol/docker-wechat.git
cd docker-wechat
docker build -t docker-wechat .

下载修改后的docker-ComWechat源码并构建最终镜像

git clone https://github.com/linrol/docker-ComWechat.git
cd docker-ComWechat
docker build -t docker-comwechat .

RUN->打开VNCView连接,happy fun

docker-compose -f ./docker-compose.yaml up -d