16 lines
327 B
YAML
16 lines
327 B
YAML
services:
|
|
thc-webhook:
|
|
build: .
|
|
container_name: thc-webhook-app
|
|
environment:
|
|
- DISCORD_WEBHOOK_URL=${DISCORD_WEBHOOK_URL}
|
|
- DASHBOARD_PORT=8420
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8420:8420"
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|