migration Part 1.

This commit is contained in:
serversdwn
2026-01-09 05:39:43 +00:00
parent 991aaca34b
commit 16eb9eb1fe
92 changed files with 262 additions and 15657 deletions

View File

@@ -1,8 +1,11 @@
services:
# --- TERRA-VIEW PRODUCTION ---
# --- TERRA-VIEW UI/ORCHESTRATOR (PRODUCTION) ---
# Serves HTML, proxies to SFM and SLMM backends
terra-view-prod:
build: .
build:
context: .
dockerfile: Dockerfile.terraview
container_name: terra-view
network_mode: host
volumes:
@@ -11,10 +14,13 @@ services:
- PYTHONUNBUFFERED=1
- ENVIRONMENT=production
- PORT=8001
- SLMM_BASE_URL=http://localhost:8100
- SFM_API_URL=http://localhost:8002 # New: Points to SFM container
- SLMM_API_URL=http://localhost:8100 # Points to SLMM container
restart: unless-stopped
depends_on:
- sfm
- slmm
command: python3 -m app.main # Runs full Terra-View (UI + orchestration)
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8001/health"]
interval: 30s
@@ -22,9 +28,11 @@ services:
retries: 3
start_period: 40s
# --- TERRA-VIEW DEVELOPMENT ---
# --- TERRA-VIEW UI/ORCHESTRATOR (DEVELOPMENT) ---
terra-view-dev:
build: .
build:
context: .
dockerfile: Dockerfile.terraview
container_name: terra-view-dev
network_mode: host
volumes:
@@ -33,12 +41,15 @@ services:
- PYTHONUNBUFFERED=1
- ENVIRONMENT=development
- PORT=1001
- SLMM_BASE_URL=http://localhost:8100
- SFM_API_URL=http://localhost:8002
- SLMM_API_URL=http://localhost:8100
restart: unless-stopped
depends_on:
- sfm
- slmm
profiles:
- dev
command: python3 -m app.main
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:1001/health"]
interval: 30s
@@ -46,6 +57,30 @@ services:
retries: 3
start_period: 40s
# --- SFM - SEISMOGRAPH FLEET MODULE (BACKEND API) ---
# Eventually will be API-only, but for now runs same code as Terra-View
sfm:
build:
context: .
dockerfile: Dockerfile.sfm
container_name: sfm
network_mode: host
volumes:
- ./data:/app/data
environment:
- PYTHONUNBUFFERED=1
- ENVIRONMENT=production
- PORT=8002 # Different port from Terra-View
- MODULE_MODE=sfm # Future: Tells app to run SFM-only mode
restart: unless-stopped
command: python3 -m app.main # For now: Same entry point, different port
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8002/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
# --- SLMM (Sound Level Meter Manager) ---
slmm:
build: