加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yaml 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
version: "3.9"
services:
yunzai-bot:
container_name: yunzai-bot
# build: ./docker # 使用 Dockerfile 本地构建,需要Linux环境和非常良好的网络
image: swr.cn-south-1.myhuaweicloud.com/sirly/yunzai-bot:latest # 基础镜像
# image: swr.cn-south-1.myhuaweicloud.com/sirly/yunzai-bot:plus # 扩展镜像,内含ffmpeg和python,可以直接运行相应插件
# image: sirly/yunzai-bot:latest # 使用Docker Hub镜像,GitHub源
# image: ccr.ccs.tencentyun.com/xm798/yunzai-bot:latest
# image: xm798/yunzai-bot:latest
restart: always
volumes:
- ./yunzai/config.js:/app/Yunzai-Bot/config/config.js # config.js 配置文件,配置文件中 redis 地址填写 "redis"
- ./yunzai/logs:/app/Yunzai-Bot/logs # 日志文件
- ./yunzai/data:/app/Yunzai-Bot/data # 数据文件
# 以下目录映射有需要可创建对应文件夹,并自行取消注释。
# - ./yunzai/global_img:/app/Yunzai-Bot/resources/global_img # 全局表情目录
# - ./yunzai/global_record:/app/Yunzai-Bot/resources/global_record # 全局语音目录
# - ./yunzai/lib/example:/app/Yunzai-Bot/lib/example # 自定义js插件目录
# - ./yunzai/plugins:/app/Yunzai-Bot/plugins # 插件目录
depends_on:
redis: { condition: service_healthy }
redis:
container_name: yunzai-redis
image: "redis:alpine"
restart: always
volumes:
- ./redis/data:/data
- ./redis/logs:/logs
healthcheck:
test: ["CMD", "redis-cli", "PING"]
start_period: 10s
interval: 5s
timeout: 1s
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化