aboutsummaryrefslogtreecommitdiffstats
path: root/csit.infra.dash/docker-compose.yaml
blob: d494d5283892eda962071d7703d4960ffb185d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: "3.7"
services:
  cdash:
    build: "."
    command: "uwsgi --ini app.ini"
    environment:
      FLASK_DEBUG: 1
      FLASK_ENV: "development"
    mem_limit: "6g"
    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"