-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
27 lines (25 loc) · 785 Bytes
/
docker-compose.yml
File metadata and controls
27 lines (25 loc) · 785 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
version: '3.7'
services:
# some-app:
# build: ../
# image: cypress/someAppImageName
# ports:
# - "3000:3000"
electron-desktop-tests:
image: "cypress/included:6.3.0"
environment:
- CYPRESS_baseUrl=https://www.discoverireland.ie
working_dir: /cypress-setup
command: "--headless --spec cypress/integration/desktop/*.js"
volumes:
- ./:/cypress-setup
- /dev/shm:/dev/shm
electron-mobile-tests:
image: "cypress/included:6.3.0"
environment:
- CYPRESS_baseUrl=https://www.discoverireland.ie
working_dir: /cypress-setup
command: "--config viewportWidth=375,viewportHeight=667,userAgent=iPhone --headless --spec cypress/integration/mobile/*.js"
volumes:
- ./:/cypress-setup
- /dev/shm:/dev/shm