Skip to content

Commit 1eca877

Browse files
committed
Add docker-compose test
1 parent e8aea8c commit 1eca877

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

defaults/cypress.cfg

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
--current-hospitalized 69
2+
--date-first-hospitalized 2020-03-07
3+
--doubling-time 4.0
4+
--hospitalized-days 7
5+
--hospitalized-rate 0.025
6+
--icu-days 9
7+
--icu-rate 0.0075
8+
--infectious-days 14
9+
--market-share 0.15
10+
--n-days 100
11+
--population 3600000
12+
--recovered 0
13+
--relative-contact-rate 0.3
14+
--ventilated-days 10
15+
--ventilated-rate 0.005

docker-compose.test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: '3.1'
2+
3+
services:
4+
app:
5+
build: .
6+
restart: always
7+
environment:
8+
PARAMETERS: ./defaults/cypress.cfg
9+
ports:
10+
- "${PORT}:8000"

0 commit comments

Comments
 (0)