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:
|
2022-11-09 13:04:44 +00:00
|
|
|
- "${DOCKER_STORAGE_PATH}/webhook/config:/config"
|
|
|
|
- "${DOCKER_STORAGE_PATH}/webhook/scripts:/var/webhook"
|
2022-11-09 12:50:31 +00:00
|
|
|
ports:
|
|
|
|
- "${WEBHOOK_EXTERNAL_PORT}:${WEBHOOK_INTERNAL_PORT}"
|
|
|
|
restart: unless-stopped
|
|
|
|
|