- Redpanda : correction start.sh (v24.3.14) - FROST : ENABLE_FROST=true dans simulator (test direct) - Pulsar : distribution.py mis à jour (mais ConnectError) - Prometheus : config ajoutée (prometheus.yml) - Grafana : datasources prêtes
58 lines
1.8 KiB
YAML
58 lines
1.8 KiB
YAML
# Smart City Digital Twin Martinique — Main Docker Compose
|
|
# Usage: docker compose -p smart-city up -d
|
|
# This file defines the simulator and includes other services
|
|
|
|
version: '3.8'
|
|
|
|
networks:
|
|
smartcity-shared:
|
|
external: true
|
|
traefik-public:
|
|
external: true
|
|
|
|
services:
|
|
# Smart City Simulator
|
|
simulator:
|
|
build: .
|
|
container_name: smart-city-simulator
|
|
networks:
|
|
- smartcity-shared
|
|
- traefik-public
|
|
environment:
|
|
# MQTT Brokers (Disabled - using Pulsar distribution)
|
|
- ENABLE_EMQX=false
|
|
- ENABLE_MOSQUITTO=false
|
|
- ENABLE_BUNKER=false
|
|
# Context Brokers (Disabled - using Pulsar distribution)
|
|
- ENABLE_ORION=false
|
|
- ENABLE_STELLIO=false
|
|
- ENABLE_FROST=true # Temporaire: test direct pour Grafana
|
|
# Databases
|
|
- ENABLE_INFLUX=true
|
|
- INFLUX_URL=http://smart-city-influxdb:8086
|
|
# Pulsar (Active - main ingestion)
|
|
- ENABLE_PULSAR=true
|
|
- PULSAR_HOST=smart-city-pulsar
|
|
- PULSAR_PORT=6650
|
|
# Redpanda (Disabled - troubleshooting)
|
|
- ENABLE_REDPANDA=false
|
|
- REDPANDA_BROKERS=smart-city-redpanda:9092
|
|
# Simulation settings
|
|
- INTERVAL=1
|
|
- LOG_LEVEL=INFO
|
|
restart: unless-stopped
|
|
labels:
|
|
- "traefik.enable=false"
|
|
|
|
# InfluxDB (defined in docker-compose.influxdb.yml)
|
|
# Run with: docker compose -f docker-compose.yml -f docker-compose.influxdb.yml up -d
|
|
|
|
# Grafana (defined in docker-compose.grafana.yml)
|
|
# Run with: docker compose -f docker-compose.yml -f docker-compose.grafana.yml up -d
|
|
|
|
# Pulsar (defined in pulsar/docker-compose.yml)
|
|
# Run with: docker compose -f docker-compose.yml -f pulsar/docker-compose.yml up -d
|
|
|
|
# Redpanda (defined in redpanda/docker-compose.yml)
|
|
# Run with: docker compose -f docker-compose.yml -f redpanda/docker-compose.yml up -d
|