[d42376]: / docker-compose.yaml

Download this file

17 lines (15 with data), 337 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
version: '3.9'
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "5002:5002"
volumes:
- ./src:/usr/src/app/src
- ./models:/usr/src/app/src/models
- ./training2017:/usr/src/app/src/training2017
environment:
- PYTHONUNBUFFERED=1
command: ["python", "app.py"]