mirror of
https://github.com/woodchen-ink/aimodels-prices.git
synced 2025-07-18 13:41:59 +08:00
22 lines
576 B
YAML
22 lines
576 B
YAML
services:
|
||
aimodels-prices:
|
||
container_name: aimodels-prices
|
||
image: woodchen/aimodels-prices:latest
|
||
restart: always
|
||
environment:
|
||
- GIN_MODE=release
|
||
- PORT=8080
|
||
- TZ=Asia/Shanghai
|
||
# 飞书Webhook配置(可选)
|
||
# - FEISHU_WEBHOOK_URL=https://open.feishu.cn/open-apis/bot/v2/hook/your-webhook-url
|
||
volumes:
|
||
- ./data:/app/data
|
||
ports:
|
||
- 10124:80
|
||
healthcheck:
|
||
test: ["CMD", "wget", "-q", "--spider", "http://localhost:80"]
|
||
interval: 30s
|
||
timeout: 10s
|
||
retries: 3
|
||
start_period: 20s
|