notify_win/server/docker-compose.yml

13 lines
352 B
YAML
Raw Normal View History

2025-02-28 15:11:02 +08:00
version: '3'
services:
notify-server:
image: your-username/notify-server:latest # 替换为你的镜像名
container_name: notify-server
ports:
- "31182:8080" # 统一使用一个端口
volumes:
- ./data:/app/data # 数据持久化
restart: unless-stopped
environment:
- TZ=Asia/Shanghai # 设置时区