16 lines
325 B
YAML
Executable File
16 lines
325 B
YAML
Executable File
version: '3.8'
|
|
|
|
services:
|
|
backtest:
|
|
build: .
|
|
container_name: backtest_platform
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./strategy:/app/strategy
|
|
- ./logs:/app/logs
|
|
- ./chat_history:/app/chat_history
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- PYTHONPATH=/app
|
|
restart: unless-stopped |