mirror of
https://github.com/ipnet-mesh/meshcore-hub.git
synced 2026-05-18 15:26:00 +02:00
0a37010db6
- 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
35 lines
735 B
YAML
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
|