Files
meshcore-hub/docker-compose.prod.yml
T
Louis King 0a37010db6 Remove bundled Prometheus/Alertmanager, fix Getting Started and docker compose examples
- Remove monitoring services from all docker compose files — monitoring is now
  user-managed infrastructure (users point their own Prometheus at /metrics)
- Remove metrics profile, prometheus/alertmanager volumes from Makefile
- Update README Getting Started: packet capture is included via --profile receiver,
  not a separate prerequisite; add remote observers guide
- Add --profile all to all docker compose command examples in README and UPGRADING.md
- Simplify UPGRADING.md backup/migration to only meshcore_hub_data
2026-04-16 22:47:07 +01:00

35 lines
735 B
YAML

# MeshCore Hub - Production Docker Compose Override
#
# Connects core services to an external proxy network for
# reverse proxy access (Traefik, Nginx, Caddy, etc.).
# No ports are exposed directly — all traffic goes through the reverse proxy.
#
# Prerequisites:
# docker network create proxy-net
#
# Usage:
# docker compose -f docker-compose.yml -f docker-compose.prod.yml up -d
#
# With Traefik:
# docker compose -f docker-compose.yml -f docker-compose.prod.yml -f docker-compose.traefik.yml up -d
services:
collector:
networks:
- default
- proxy-net
api:
networks:
- default
- proxy-net
web:
networks:
- default
- proxy-net
networks:
proxy-net:
external: true