Dockerize opaque flask app with docker-compose – first step

This commit is contained in:
Stephan Porada
2019-09-04 14:51:46 +02:00
parent c6184976b8
commit f8bee3553d
4 changed files with 36 additions and 1 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
version: '3.7'
services:
web:
build: .
container_name: web_flask_opaque
image: gitlab.ub.uni-bielefeld.de:4567/sfb1288inf/opaque
volumes:
- .:/opaque
env_file:
- .env
ports:
- 5000:5000
command: bash flask-entrypoint.sh