Fix jwt-token

This commit is contained in:
2025-08-19 19:13:32 +02:00
parent 4a62b0d5cc
commit 88e2260e98
8 changed files with 593 additions and 37 deletions

View File

@@ -142,6 +142,25 @@ services:
- simulation
command: python drone_simulator.py --devices 5 --duration 3600
# Health Probe Simulator (Continuous Device Heartbeats)
healthprobe:
build:
context: .
dockerfile: Dockerfile.healthprobe
container_name: drone-detection-healthprobe
restart: unless-stopped
environment:
PROBE_FAILRATE: ${PROBE_FAILRATE:-30}
PROBE_INTERVAL_SECONDS: ${PROBE_INTERVAL_SECONDS:-60}
API_BASE_URL: http://backend:3001/api
networks:
- drone-network
depends_on:
backend:
condition: service_healthy
profiles:
- healthprobe
volumes:
postgres_data:
driver: local