13 lines
352 B
YAML
13 lines
352 B
YAML
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 # 设置时区 |