2026-02-16 17:19:20 +10:00
|
|
|
services:
|
2026-02-19 15:53:54 +10:00
|
|
|
live-engine:
|
2026-02-16 17:19:20 +10:00
|
|
|
build: .
|
2026-02-19 15:53:54 +10:00
|
|
|
container_name: fx-quant-engine
|
2026-02-16 17:19:20 +10:00
|
|
|
env_file:
|
|
|
|
|
- config/.env
|
2026-02-19 15:53:54 +10:00
|
|
|
environment:
|
|
|
|
|
- PORT=8080
|
2026-02-16 17:19:20 +10:00
|
|
|
volumes:
|
2026-02-17 13:29:12 +10:00
|
|
|
- ./config:/app/config
|
2026-02-16 17:19:20 +10:00
|
|
|
- ./logs:/app/logs
|
|
|
|
|
- ./models:/app/models
|
2026-02-19 15:53:54 +10:00
|
|
|
ports:
|
|
|
|
|
- "8080:8080"
|
2026-02-16 17:19:20 +10:00
|
|
|
restart: unless-stopped
|
2026-02-17 13:29:12 +10:00
|
|
|
|
|
|
|
|
dashboard:
|
|
|
|
|
build: .
|
|
|
|
|
container_name: fx-quant-dashboard
|
|
|
|
|
command: python src/dashboard.py
|
|
|
|
|
env_file:
|
|
|
|
|
- config/.env
|
2026-02-19 15:53:54 +10:00
|
|
|
environment:
|
|
|
|
|
- PORT=5000
|
2026-02-17 13:29:12 +10:00
|
|
|
volumes:
|
|
|
|
|
- ./config:/app/config
|
|
|
|
|
- ./logs:/app/logs:ro
|
|
|
|
|
- ./templates:/app/templates:ro
|
|
|
|
|
ports:
|
|
|
|
|
- "5000:5000"
|
|
|
|
|
restart: unless-stopped
|