mirror of
https://github.com/wangwangit/qywx-push.git
synced 2026-05-06 20:43:05 +08:00
17 lines
423 B
YAML
17 lines
423 B
YAML
version: '3'
|
|
|
|
services:
|
|
wechat-notifier:
|
|
build: .
|
|
container_name: wechat-notifier
|
|
restart: unless-stopped
|
|
ports:
|
|
- "12121:12121"
|
|
volumes:
|
|
- ./database:/app/database
|
|
environment:
|
|
- PORT=12121
|
|
- DB_PATH=/app/database/notifier.db
|
|
- ENCRYPTION_KEY=change-this-to-a-random-32-character-string
|
|
- NODE_ENV=production
|
|
- WECHAT_API_BASE=https://qyapi.weixin.qq.com |