mirror of
https://github.com/BrentNeale1/fx-quant.git
synced 2026-07-29 03:17:45 +00:00
ef950f25dd
Dockerize the order executor with python:3.11-slim, add docker-compose with config volume mount for hot-reload of system.yaml settings. Integrate AI ensemble validation into order execution pipeline and add configurable interval loop (default 60s) to replace container restart cycling. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
249 B
YAML
12 lines
249 B
YAML
services:
|
|
fx-quant:
|
|
build: .
|
|
container_name: fx-quant
|
|
env_file:
|
|
- config/.env
|
|
volumes:
|
|
- ./config/system.yaml:/app/config/system.yaml:ro
|
|
- ./logs:/app/logs
|
|
- ./models:/app/models
|
|
restart: unless-stopped
|