Files
Neural-Network-MT5-Trading-Bot/docker-compose.yml
T

18 lines
376 B
YAML
Raw Normal View History

2023-11-22 20:18:02 +02:00
version: '3'
2023-07-13 16:53:03 +02:00
services:
2023-11-22 20:18:02 +02:00
trading-bot:
2023-07-16 04:14:41 +02:00
build:
context: .
2023-11-22 20:18:02 +02:00
dockerfile: Dockerfile
2023-07-13 16:53:03 +02:00
ports:
2023-11-22 20:18:02 +02:00
- "5000:5000"
2023-07-13 16:53:03 +02:00
volumes:
2023-11-22 20:18:02 +02:00
- ./src:/app/src
- ./static:/app/static
- ./templates:/app/templates
- ./model_weights.h5:/app/model_weights.h5
environment:
- FLASK_APP=main.py
- FLASK_RUN_HOST=0.0.0.0
- PYTHONUNBUFFERED=1