16 lines
450 B
YAML
16 lines
450 B
YAML
|
---
|
||
|
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
|
||
|
|