-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdocker-compose-aloe.yml
54 lines (50 loc) · 1.25 KB
/
docker-compose-aloe.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
version: '2'
services:
datadevselenium:
extends:
file: docker-compose-common.yml
service: datadevselenium
dataprodselenium:
extends:
file: docker-compose-common.yml
service: dataprodselenium
# runs the aloe tests against docker-compose-teststack.yml
teststack:
image: muccg/rdrf-dev
command: aloe
environment:
- WAIT_FOR_RUNSERVER=1
- WAIT_FOR_DB=1
- WAIT_FOR_CLINICAL_DB=1
- TEST_WAIT=10
- TEST_BROWSER=chrome
- DEBUG=0
- RUNSERVER=runservertest
- CLINICAL_DBSERVER=dbclinicaltest
- DBSERVER=dbtest
- CACHESERVER=cachetest
- MAIN_APP=1
volumes_from:
- datadevselenium
# runs the aloe tests against docker-compose-prod.yml
prod:
image: muccg/rdrf-dev
command: aloe
environment:
- WAIT_FOR_UWSGI=1
- WAIT_FOR_DB=1
- WAIT_FOR_CLINICAL_DB=1
- TEST_APP_HOST=nginxtest
- TEST_APP_PORT=443
- TEST_APP_SCHEME=https
- TEST_APP_PATH=/app/
- TEST_WAIT=10
- TEST_BROWSER=chrome
- DEBUG=0
- RUNSERVER=runservertest
- CLINICAL_DBSERVER=dbclinicaltest
- DBSERVER=dbtest
- CACHESERVER=cachetest
- UWSGISERVER=uwsgitest
volumes_from:
- dataprodselenium