blob: 4c9812f4ef8cb65d682f6c29ee58717abadb64f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
version: '3'
services:
python-api-server:
image: quotengrote/python-api-server:latest
ports:
- "5040:5000"
volumes:
- ./uploads:/uploads
environment:
FLASK_DEBUG: 1
FLASK_APP: app
AUTH_TOKEN: myuploadtoken
UPLOAD_DIRECTORY: /uploads # where to store the uploaded files; should be mapped to a docker volume; default "/uploads"
|