mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
18 lines
480 B
YAML
18 lines
480 B
YAML
version: "3.5"
|
|
|
|
services:
|
|
nopaque:
|
|
environment:
|
|
- ENABLE_GUNICORN_RELOAD=True
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
# Mount code as volumes
|
|
- "./app:/home/nopaque/app"
|
|
- "./boot.sh:/home/nopaque/boot.sh"
|
|
- "./config.py:/home/nopaque/config.py"
|
|
- "./migrations:/home/nopaque/migrations"
|
|
- "./nopaque.py:/home/nopaque/nopaque.py"
|
|
- "./requirements.txt:/home/nopaque/requirements.txt"
|
|
- "./tests:/home/nopaque/tests"
|