mirror of
https://github.com/ipnet-mesh/meshcore-hub.git
synced 2026-06-26 13:01:55 +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
28 lines
600 B
YAML
28 lines
600 B
YAML
# MeshCore Hub - Development Docker Compose Override
|
|
#
|
|
# Exposes service ports for local development and testing.
|
|
# NOT intended for production use — use docker-compose.prod.yml instead.
|
|
#
|
|
# Usage:
|
|
# docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d
|
|
|
|
services:
|
|
collector:
|
|
depends_on:
|
|
db-migrate:
|
|
condition: service_completed_successfully
|
|
mqtt:
|
|
condition: service_healthy
|
|
|
|
mqtt:
|
|
ports:
|
|
- "${MQTT_PORT:-1883}:${MQTT_PORT:-1883}"
|
|
|
|
api:
|
|
ports:
|
|
- "${API_PORT:-8000}:8000"
|
|
|
|
web:
|
|
ports:
|
|
- "${WEB_PORT:-8080}:8080"
|