-
Notifications
You must be signed in to change notification settings - Fork 58
/
docker-compose.yml
61 lines (56 loc) · 1.28 KB
/
docker-compose.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
55
56
57
58
59
60
61
version: '3.9'
services:
synpress:
container_name: synpress
build: .
environment:
- DISPLAY=display:0.0
- PRIVATE_KEY=${PRIVATE_KEY}
- GITHUB_TOKEN=${GITHUB_TOKEN}
- TEST_PARAMS=${TEST_PARAMS}
depends_on:
- display
- video
entrypoint: []
working_dir: /app
volumes:
- ./docker/videos:/app/public-report/screenshots
- ./docker/screenshots:/app/public-report/videos
command: >
yarn synpress:ct
networks:
- x11
display:
container_name: display
image: synthetixio/display:b2643097e891906524e52e7ee956260b20fa01fb-base
environment:
- RUN_XTERM=no
ports:
- '8080:8080'
networks:
- x11
ngrok:
profiles:
- ngrok
container_name: ngrok
image: synthetixio/ngrok:b2643097e891906524e52e7ee956260b20fa01fb-base
ports:
- '4040:4040'
command: ['ngrok', 'http', 'display:8080', '--authtoken', '${NGROK_AUTH}']
depends_on:
- display
networks:
- x11
video:
container_name: video
image: synthetixio/video:b2643097e891906524e52e7ee956260b20fa01fb-base
volumes:
- ./docker/videos-ci:/videos
environment:
- FILE_NAME=CI-full-video.mp4
depends_on:
- display
networks:
- x11
networks:
x11: