Files
hugo-webhook/docker-compose.yml
2025-10-08 22:45:24 +02:00

15 lines
316 B
YAML

services:
site:
build:
context: .
args:
HUGO_VERSION: ${HUGO_VERSION}
WEBHOOK_VERSION: ${WEBHOOK_VERSION}
container_name: hugo-webhook
env_file:
- .env
ports:
- "1313:1313" # hugo server
- "9000:9000" # webhook listener
restart: unless-stopped