diff --git a/.env b/.env index af850cb..ca3646d 100644 --- a/.env +++ b/.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 diff --git a/webhook.yml b/webhook.yml new file mode 100644 index 0000000..0fddfdd --- /dev/null +++ b/webhook.yml @@ -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 + \ No newline at end of file