13 lines
295 B
YAML
13 lines
295 B
YAML
services:
|
|
trello-webhook:
|
|
build: .
|
|
container_name: trello-webhook
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-q0-", "http://127.0.0.1:3000/healthz"]
|
|
interval: 30s
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s |