Add internal mTLS bridge service for monitoring stack

This commit is contained in:
beatz174-bit
2026-04-13 13:18:40 +10:00
parent 6f47e654a8
commit cd47fe324e
5 changed files with 139 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
services:
mtls-bridge:
profiles: ["monitoring", "all", "mtls-bridge"]
build:
context: ${PROJECT_ROOT}/monitoring/mtls-bridge
container_name: mtls-bridge
restart: unless-stopped
environment:
- TARGET_URL=https://node-red.lan.ddnsgeek.com/docker-update-lockouts/clear
- CLIENT_CERT=/certs/client.crt
- CLIENT_KEY=/certs/client.key
- CA_CERT=/certs/ca.crt
- TIMEOUT=5
volumes:
- ${PROJECT_ROOT}/core/traefik/certs:/certs:ro
networks:
- monitor
- traefik