Add initial MQTT scrubber service scaffold

This commit is contained in:
2026-03-12 18:12:16 +01:00
parent 957b2c41b3
commit 464f4c3ec4
22 changed files with 4150 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
version: "3.8"
services:
mqqt-scrubber:
build:
context: .
container_name: mqqt-scrubber
restart: unless-stopped
ports:
- "8080:8080"
volumes:
- ./config.json:/app/config.json:ro
environment:
MQTT_SCRUBBER_APP_HEALTH_ADDRESS: ":8080"
healthcheck:
test: ["CMD", "wget", "-q", "-O-", "http://127.0.0.1:8080/healthz"]
interval: 30s
timeout: 5s
retries: 3
start_period: 15s