0
0
Fourche 1
miroir de https://github.com/A6-9V/MQL5-Google-Onedrive.git synchronisé 2026-04-11 04:30:56 +00:00
MQL5-Google-Onedrive/docker-compose.yml

26 lignes
520 o
YAML
Brut Lien permanent Vue normale Historique

version: '3.8'
services:
mql5-automation:
build: .
container_name: mql5-trading-automation
restart: unless-stopped
volumes:
- ./config:/app/config
- ./logs:/app/logs
- ./mt5:/app/mt5
environment:
- PYTHONUNBUFFERED=1
- TZ=UTC
networks:
- mql5-network
healthcheck:
test: ["CMD", "python", "-c", "import sys; sys.exit(0)"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
networks:
mql5-network:
driver: bridge