1
0

chore(deps): update mlikiowa/napcat-docker docker tag to v4.17.46 (localApps) (#4410)

This commit is contained in:
renovate[bot]
2026-03-08 12:43:04 +00:00
committed by GitHub
parent f5eb32afb8
commit 1faac1f558
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,108 @@
additionalProperties:
formFields:
- default: "./astrbot-napcat-data"
edit: true
envKey: ASTRBOT_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
label:
en: Data persistence path
zh: 数据持久化路径
required: true
type: text
- default: 6185
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: WebUI 端口
labelEn: WebUI port
label:
en: WebUI port
zh: WebUI 端口
required: true
rule: paramPort
type: number
- default: 6195
edit: true
envKey: PANEL_APP_PORT_WECOM
labelZh: 企业微信 WebHook
labelEn: WeCom WebHook
label:
en: WeCom WebHook
zh: 企业微信 WebHook
required: true
rule: paramPort
type: number
- default: 11451
edit: true
envKey: PANEL_APP_PORT_WECHAT
labelZh: 个人微信 WebHook
labelEn: WeChat WebHook
label:
en: WeChat WebHook
zh: 个人微信 WebHook
required: true
rule: paramPort
type: number
- default: 6199
edit: true
envKey: PANEL_APP_PORT_QQ_WH
labelZh: QQ WebHook
labelEn: QQ WebHook
label:
en: QQ WebHook
zh: QQ WebHook
required: true
rule: paramPort
type: number
- default: 6196
edit: true
envKey: PANEL_APP_PORT_QQ_API
labelZh: QQ API
labelEn: QQ API
label:
en: QQ API
zh: QQ API
required: true
rule: paramPort
type: number
- default: 6099
edit: true
envKey: PANEL_APP_PORT_NAPCAT
labelZh: NapCat 端口
labelEn: NapCat port
label:
en: NapCat port
zh: NapCat 端口
required: true
rule: paramPort
type: number
- default: "02:42:ac:11:00:02"
edit: true
envKey: NAPCAT_MAC_ADDRESS
labelZh: NapCat 容器 MAC 地址
labelEn: NapCat container MAC address
label:
en: NapCat container MAC address
zh: NapCat 容器 MAC 地址
required: true
type: text
- default: 1000
edit: true
envKey: NAPCAT_UID
labelZh: NapCat 容器 UID
labelEn: NapCat container UID
label:
en: NapCat container UID
zh: NapCat 容器 UID
required: true
type: number
- default: 1000
edit: true
envKey: NAPCAT_GID
labelZh: NapCat 容器 GID
labelEn: NapCat container GID
label:
en: NapCat container GID
zh: NapCat 容器 GID
required: true
type: number

View File

@@ -0,0 +1,43 @@
networks:
1panel-network:
external: true
services:
napcat:
image: mlikiowa/napcat-docker:v4.17.46
container_name: napcat-${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_NAPCAT}:6099
mac_address: ${NAPCAT_MAC_ADDRESS:-02:42:ac:11:00:02}
volumes:
- ${ASTRBOT_ROOT_PATH}/data:/AstrBot/data
- ${ASTRBOT_ROOT_PATH}/ntqq:/app/.config/QQ
environment:
- TZ=Asia/Shanghai
- MODE=astrbot
- NAPCAT_UID=${NAPCAT_UID:-1000}
- NAPCAT_GID=${NAPCAT_GID:-1000}
astrbot:
image: soulter/astrbot:v4.19.2
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:6185
- ${PANEL_APP_PORT_QQ_WH}:6199
- ${PANEL_APP_PORT_QQ_API}:6196
- ${PANEL_APP_PORT_WECOM}:6195
- ${PANEL_APP_PORT_WECHAT}:11451
volumes:
- /etc/localtime:/etc/localtime:ro
- ${ASTRBOT_ROOT_PATH}/data:/AstrBot/data
- ${ASTRBOT_ROOT_PATH}/ntqq:/app/.config/QQ
- ${ASTRBOT_ROOT_PATH}/napcat/config:/app/napcat/config
environment:
- TZ=Asia/Shanghai