mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
26 lines
882 B
YAML
26 lines
882 B
YAML
|
version: "3.5"
|
||
|
|
||
|
services:
|
||
|
nopaque:
|
||
|
ports:
|
||
|
- "5000:5000"
|
||
|
volumes:
|
||
|
# Mount code as volumes
|
||
|
- "./web/app:/home/nopaque/app"
|
||
|
- "./web/boot.sh:/home/nopaque/boot.sh"
|
||
|
- "./web/config.py:/home/nopaque/config.py"
|
||
|
- "./web/migrations:/home/nopaque/migrations"
|
||
|
- "./web/nopaque.py:/home/nopaque/nopaque.py"
|
||
|
- "./web/requirements.txt:/home/nopaque/requirements.txt"
|
||
|
- "./web/tests:/home/nopaque/tests"
|
||
|
nopaqued:
|
||
|
volumes:
|
||
|
# Mount code as volumes
|
||
|
- "./daemon/boot.sh:/home/nopaqued/boot.sh"
|
||
|
- "./daemon/config.py:/home/nopaqued/config.py"
|
||
|
- "./daemon/logger:/home/nopaqued/logger"
|
||
|
- "./daemon/nopaqued.py:/home/nopaqued/nopaqued.py"
|
||
|
- "./daemon/notify:/home/nopaqued/notify"
|
||
|
- "./daemon/requirements.txt:/home/nopaqued/requirements.txt"
|
||
|
- "./daemon/tasks:/home/nopaqued/tasks"
|