mirror of
https://github.com/A6-9V/MQL5-Google-Onedrive.git
synced 2026-04-10 22:30:56 +00:00
26 lines
520 B
YAML
26 lines
520 B
YAML
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
|