Files
trello-webhook/docker-compose.yaml
2026-03-10 21:49:09 +08:00

26 lines
518 B
YAML

services:
trello-webhook:
build: .
container_name: trello-webhook
restart: unless-stopped
env_file:
- .env
ports:
- "17431:3000"
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
healthcheck:
test: ["CMD", "wget", "-q0-", "http://127.0.0.1:3000/healthz"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
networks:
- app
labels:
createdBy: "App"
networks:
app:
external: true