mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 19:27:44 +00:00
19 lines
469 B
YAML
19 lines
469 B
YAML
# Docker Compose for QuantumBotX (no version key needed)
|
|
services:
|
|
quantumbotx:
|
|
build: .
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- .:/app
|
|
- ./instance:/app/instance # Persist database
|
|
- ./logs:/app/logs # Persist logs
|
|
environment:
|
|
- FLASK_ENV=development
|
|
- BROKER_TYPE=CCXT
|
|
- EXCHANGE_ID=binance
|
|
- FLASK_HOST=0.0.0.0
|
|
# - API_KEY=your_api_key
|
|
# - API_SECRET=your_api_secret
|
|
restart: unless-stopped
|