Fix jwt-token

This commit is contained in:
2025-09-12 23:06:34 +02:00
parent f34cc187f2
commit c7f4f23f00
24 changed files with 1933 additions and 1 deletions

View File

@@ -112,6 +112,27 @@ services:
timeout: 10s
retries: 3
# Management Portal
management:
build:
context: ./management
dockerfile: Dockerfile
args:
VITE_API_URL: ${VITE_API_URL:-/api}
container_name: drone-detection-management
restart: unless-stopped
ports:
- "3003:80"
networks:
- drone-network
depends_on:
- backend
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80"]
interval: 30s
timeout: 10s
retries: 3
# Nginx Reverse Proxy (Production)
nginx:
image: nginx:alpine