-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.full.yml
More file actions
41 lines (37 loc) · 964 Bytes
/
docker-compose.full.yml
File metadata and controls
41 lines (37 loc) · 964 Bytes
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
version: '3.6'
services:
mongo:
image: mongo:4.0
director:
image: agoldis/sorry-cypress-director:latest
environment:
DASHBOARD_URL: cypress-inventi-dashboard.herokuapp.com/
MONGODB_URI: 'mongodb://mongo:27017'
MONGODB_DATABASE: 'cypress-db'
EXECUTION_DRIVER: '../execution/mongo/driver'
SCREENSHOTS_DRIVER: '../screenshots/s3.driver'
AWS_ACCESS_KEY_ID: 'key'
AWS_SECRET_ACCESS_KEY: 'secret'
S3_BUCKET: cypress-inventi-dashboard
ports:
- 1234:1234
depends_on:
- mongo
api:
image: agoldis/sorry-cypress-api:latest
environment:
MONGODB_URI: 'mongodb://mongo:27017'
MONGODB_DATABASE: 'sorry-cypress'
ports:
- 4000:4000
depends_on:
- mongo
dashboard:
image: agoldis/sorry-cypress-dashboard:latest
environment:
GRAPHQL_SCHEMA_URL: http://localhost:4000
ports:
- 8080:8080
depends_on:
- mongo
- api