blob: 5ed71345fbcc0c526d5c432d1e7ae230a552f473 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
version: "3"
services:
cdash:
build: "."
command: "uwsgi --ini app.ini"
environment:
FLASK_DEBUG: 1
FLASK_ENV: "development"
mem_limit: "16g"
ports:
- "5000:5000"
user: "${UID}:${GID}"
volumes:
- "${PWD}/app/:/var/app/current"
- "${PWD}/../resources/libraries/python/jumpavg/:/var/app/current/cdash/jumpavg"
- "${HOME}/.aws:/.aws"
|