webhook: add
This commit is contained in:
parent
facf5689ea
commit
126ff79525
2
.env
2
.env
|
@ -14,3 +14,5 @@ VALHEIM_INTERNAL_PORT=2456-2457/udp
|
|||
VALHEIM_EXTERNAL_PORT=2456-2457
|
||||
NTFY_EXTERNAL_PORT=8100
|
||||
NTFY_INTERNAL_PORT=80
|
||||
WEBHOOK_EXTERNAL_PORT=9200
|
||||
WEBHOOK_INTERNAL_PORT=9000
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
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
|
||||
|
Loading…
Reference in New Issue