Complete deployment configurations for running the SPORE stack
+ + +Simple deployment with docker-compose for development and production with one command: docker compose up -d
Production-ready deployment with HashiCorp Nomad for multi-node clustering, rolling updates, and advanced resource management
+All SPORE services included: mosquitto MQTT broker, gateway, registry, UI, and LEDLab with proper networking and volumes
+Built-in Mosquitto broker for message routing and event streaming with WebSocket support
+All data persisted in local directories for registry data, MQTT data, and firmware storage
+Built-in service discovery, health checks, and real-time status monitoring for all services
+# Clone the deployment repository
+git clone https://git.dcentral.systems/iot/spore-deployment.git
+cd spore-deployment
+
+# Start all services with Docker Compose
+docker compose up -d
+
+# Or start with Nomad (production)
+make nomad-start
+make nomad-job-run
+ Once deployed, access the services at:
+# Docker Compose (dev)
+docker compose up -d
+
+# Nomad (production)
+make nomad-start
+make nomad-job-run
+