1
0
Fork 0
docker-compose-templates/webhook.yml

16 lines
450 B
YAML
Raw Normal View History

2022-11-09 12:50:31 +00:00
---
version: "2.1"
services:
webhook:
image: ${REGISTRY_URL}/webhook
container_name: webhook
build: https://git.kucharczyk.xyz/containers/webhook.git#main
user: ${PUID}:${PGID}
environment:
- TZ=${TZ}
volumes:
- "${DOCKER_STORAGE_PATH}/webhook:/config"
ports:
- "${WEBHOOK_EXTERNAL_PORT}:${WEBHOOK_INTERNAL_PORT}"
restart: unless-stopped