summaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
authormg2023-04-25 20:52:45 +0200
committermg2023-04-25 20:52:45 +0200
commit13a3ab00761a7aa56780fd5d066e618da102e8c5 (patch)
tree96387fbf24d6252673d76e0d0aa13b5400eb1db1 /docker-compose.yml
parentef96c7167a37f320f8cfdb60dcef0c87184333d8 (diff)
add swagger (#1)v2
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: https://git.mgrote.net/mg/python-api-server/pulls/1
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml18
1 files changed, 0 insertions, 18 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
deleted file mode 100644
index 52b1267..0000000
--- a/docker-compose.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-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
- UPLOAD_DIRECTORY: /uploads
- AUTH_TOKEN: myuploadtoken
-
-volumes:
- uploads: