mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-06 03:46:10 +08:00
🐛 分支应该是main而不是master 💄 auto fix by pre-commit hooks 🔥 dependabot.yml的registrys需要token,先删除
24 lines
569 B
YAML
24 lines
569 B
YAML
version: "3"
|
|
|
|
services:
|
|
go-cqhttp:
|
|
image: silicer/go-cqhttp:v1.0.0-rc3
|
|
volumes:
|
|
- ./bot-data:/data
|
|
nonebot:
|
|
image: felinae98/nonebot-bison
|
|
volumes:
|
|
- ./nonebot-data:/data
|
|
environment:
|
|
TZ: Asia/Shanghai
|
|
HOST: 0.0.0.0
|
|
# SUPERUSERS: '[<your QQ>]'
|
|
BISON_CONFIG_PATH: /data
|
|
# BISON_OUTER_URL: 'http://<your server ip>:8080/bison'
|
|
BISON_FILTER_LOG: "true"
|
|
BISON_USE_PIC: "false" # 如果需要将文字转为图片发送请改为true
|
|
ports:
|
|
- 8080:8080
|
|
depends_on:
|
|
- go-cqhttp
|