legend1234 commited on
Commit
781edd3
·
1 Parent(s): ef23e04

Remove docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +0 -26
docker-compose.yml DELETED
@@ -1,26 +0,0 @@
1
- version: '3.8'
2
-
3
- services:
4
- web:
5
- build: .
6
- command: gunicorn --config gunicorn_config.py app:app --reload
7
- ports:
8
- - "8009:8009"
9
- volumes:
10
- - .:/app
11
- - upload_data:/app/uploads
12
- - ./md_files:/app/md_files
13
- - matplotlib_cache:/tmp/matplotlib
14
- environment:
15
- - FLASK_ENV=production
16
- - MPLCONFIGDIR=/tmp/matplotlib
17
- deploy:
18
- resources:
19
- limits:
20
- cpus: '1.0'
21
- memory: 12G
22
- restart: unless-stopped
23
-
24
- volumes:
25
- upload_data:
26
- matplotlib_cache: