1
0
Fork 0

webhook: add

This commit is contained in:
Lukáš Kucharczyk 2022-11-09 13:50:31 +01:00
parent facf5689ea
commit 126ff79525
Signed by: lukas
SSH Key Fingerprint: SHA256:vMuSwvwAvcT6htVAioMP7rzzwMQNi3roESyhv+nAxeg
2 changed files with 18 additions and 0 deletions

2
.env
View File

@ -14,3 +14,5 @@ VALHEIM_INTERNAL_PORT=2456-2457/udp
VALHEIM_EXTERNAL_PORT=2456-2457 VALHEIM_EXTERNAL_PORT=2456-2457
NTFY_EXTERNAL_PORT=8100 NTFY_EXTERNAL_PORT=8100
NTFY_INTERNAL_PORT=80 NTFY_INTERNAL_PORT=80
WEBHOOK_EXTERNAL_PORT=9200
WEBHOOK_INTERNAL_PORT=9000

16
webhook.yml Normal file
View File

@ -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