forked from LengKundee/MQL5-Google-Onedrive
Merged the following branches: - feat-genx-trader-bot-bridge (ZOLO bridge, Docker updates) - feature/zolo-integration-update (ZOLO bridge improvements) - feature/add-web-request (Requests support) - fix-mql5-ask-bid-usage (Fix for MQL5) - update-documentation-and-setup-script (Docs update) - update-trading-bridge-zolo (Bridge IP update) - expert-mapsar-improvements (MAPSAR EA improvements) - remote-control-intelligence-tools-integration (Remote control guide) - feat/cli-documentation (CLI docs) - perf-optimize-validator (Validator script optimization) - jules-docker-run-verification (Verification doc update) Resolved conflicts in: - mt5/MQL5/Experts/SMC_TrendBreakout_MTF_EA.mq5 (Version 1.21, merged improvements) - scripts/ci_validate_repo.py (Kept optimized version) - render.yaml (Merged configs) - docker-compose.yml (Merged configs) - README.md & docs (Merged updates) Security fixes: - Removed hardcoded credentials from setup_github_secrets.ps1 and docs/GITHUB_CI_CD_SETUP.md.
57 lines
1.1 KiB
YAML
57 lines
1.1 KiB
YAML
version: '3.8'
|
|
|
|
services:
|
|
mql5-dev:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
container_name: mql5-trading-dev
|
|
restart: unless-stopped
|
|
volumes:
|
|
- .:/app
|
|
- ./config:/app/config
|
|
- ./logs:/app/logs
|
|
- ./mt5:/app/mt5
|
|
- python-cache:/root/.cache/pip
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
- PYTHONPATH=/app
|
|
- TZ=UTC
|
|
- ENV=development
|
|
ports:
|
|
- "8080:8080"
|
|
- "5000:5000"
|
|
- "3000:3000"
|
|
networks:
|
|
- mql5-dev-network
|
|
stdin_open: true
|
|
tty: true
|
|
command: tail -f /dev/null
|
|
|
|
# Optional: Add services for testing
|
|
telegram-bot-dev:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
container_name: mql5-telegram-bot-dev
|
|
restart: unless-stopped
|
|
volumes:
|
|
- .:/app
|
|
- ./config:/app/config
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
- PYTHONPATH=/app
|
|
- TZ=UTC
|
|
- ENV=development
|
|
networks:
|
|
- mql5-dev-network
|
|
command: python scripts/telegram_deploy_bot.py
|
|
depends_on:
|
|
- mql5-dev
|
|
|
|
volumes:
|
|
python-cache:
|
|
|
|
networks:
|
|
mql5-dev-network:
|
|
driver: bridge
|