26 lines
518 B
YAML
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 |