updated the repo to use host networking as the default appliance deployment model

This commit is contained in:
Jake Kasper
2026-04-24 11:24:58 -04:00
parent a0e77aabd6
commit a8cf68b6d3
6 changed files with 45 additions and 12 deletions

View File

@@ -1,4 +1,5 @@
FROM python:3.12-slim
FROM docker.io/library/python:3.12-slim
WORKDIR /app
@@ -14,7 +15,8 @@ COPY config/ ./config/
EXPOSE 8100
# When running standalone, override these to point at your Prometheus/Alertmanager
# Appliance-style defaults for host-network deployment. Override via env or
# systemd EnvironmentFile when needed.
ENV MARVIS_PROMETHEUS_URL=http://127.0.0.1:9090
ENV MARVIS_PROMETHEUS_PREFIX=/prometheus
ENV MARVIS_ALERTMANAGER_URL=http://127.0.0.1:9093