summaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: 32ac66cc3bbfb8a9fba983920f4ad5a3feb6009e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: '3'
services:
  python-api-server:
    container_name: httpd-api
    image: quotengrote/python-api-server:latest
    ports:
      - "5040:5000"
    volumes:
      - uploads:/uploads
    environment:
      # FLASK_DEBUG: 1 # for debugging
      # FLASK_APP: app # for debugging
      MAX_CONTENT_LENGTH: 10 # in MB; default 5MB
      UPLOAD_DIRECTORY: /uploads # where to store the uploaded files; should be mapped to a docker volume; default "/uploads"
      AUTH_TOKEN: myuploadtoken # token used for authenticating

volumes:
  uploads: