aboutsummaryrefslogtreecommitdiffstats
path: root/csit.infra.dash/docker-compose.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'csit.infra.dash/docker-compose.yaml')
-rw-r--r--csit.infra.dash/docker-compose.yaml30
1 files changed, 30 insertions, 0 deletions
diff --git a/csit.infra.dash/docker-compose.yaml b/csit.infra.dash/docker-compose.yaml
new file mode 100644
index 0000000000..a3b5e1a683
--- /dev/null
+++ b/csit.infra.dash/docker-compose.yaml
@@ -0,0 +1,30 @@
+version: "3"
+services:
+ cdash:
+ build: "."
+ command: "uwsgi --ini app.ini"
+ environment:
+ FLASK_DEBUG: 1
+ FLASK_ENV: "development"
+ CSIT_START_TRENDING: "True"
+ CSIT_START_REPORT: "True"
+ CSIT_START_COMPARISONS: "True"
+ CSIT_START_COVERAGE: "True"
+ CSIT_START_STATISTICS: "True"
+ CSIT_START_FAILURES: "True"
+ CSIT_START_SEARCH: "True"
+ CSIT_START_DOC: "True"
+ CSIT_TITLE: "FD.io CSIT"
+ CSIT_BRAND: "CSIT-Dash"
+ CSIT_URL_CICD: "https://jenkins.fd.io/job/"
+ CSIT_URL_LOGS: "https://logs.fd.io/vex-yul-rot-jenkins-1/"
+ CSIT_URL_DOC: "https://csit.fd.io/cdocs/"
+ CSIT_TIME_PERIOD: 250
+ 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"