修改默认端口为16026

This commit is contained in:
2026-07-07 13:20:52 +08:00
parent fc43e6e806
commit ef4d26f11b
10 changed files with 155 additions and 28 deletions

View File

@@ -6,14 +6,14 @@ services:
image: web-capture-api:latest
container_name: web-capture-api
ports:
- "16025:16025"
- "16026:16026"
environment:
- TZ=Asia/Shanghai
volumes:
- ./captures:/tmp/web_captures
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:16025/health"]
test: ["CMD", "curl", "-f", "http://localhost:16026/health"]
interval: 30s
timeout: 10s
retries: 3