Files
web-capture-api/docker-compose.yml

20 lines
444 B
YAML
Raw Normal View History

version: '3.8'
services:
web-capture-api:
build: .
image: web-capture-api:latest
container_name: web-capture-api
ports:
2026-07-07 13:20:52 +08:00
- "16026:16026"
environment:
- TZ=Asia/Shanghai
volumes:
- ./captures:/tmp/web_captures
restart: unless-stopped
healthcheck:
2026-07-07 13:20:52 +08:00
test: ["CMD", "curl", "-f", "http://localhost:16026/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s