forked from Synthetixio/synpress
-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
96 lines (89 loc) · 2.11 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
version: '3.9'
services:
synpress:
profiles:
- synpress
container_name: synpress
build: .
environment:
- DISPLAY=display:0.0
- CYPRESS_PRIVATE_KEY_WITH_FUNDS=${CYPRESS_PRIVATE_KEY_WITH_FUNDS}
- GITHUB_TOKEN=${GITHUB_TOKEN}
- DEBUG=${DEBUG}
- CYPRESS_DOCKER_RUN=true
depends_on:
- display
- video
- agd
entrypoint: []
working_dir: /app
volumes:
- ./docker/videos:/app/tests/e2e/videos
- ./docker/screenshots:/app/tests/e2e/screenshots
command: >
bash -c 'echo -n "======> local noVNC URL: http://localhost:8080/vnc.html?autoconnect=true " && echo -n "======> remote noVNC URL: " && curl -s ngrok:4040/api/tunnels | jq -r .tunnels[0].public_url && VITE_RUN_ENV=agoric_chain pnpm test:e2e:keplr'
networks:
- x11
display:
profiles:
- synpress
container_name: display
image: synthetixio/display:457bb48776c3b14de232d9dda620ba9188dc40ac-base
environment:
- RUN_XTERM=no
ports:
- '8080:8080'
networks:
- x11
ngrok:
profiles:
- ngrok
container_name: ngrok
image: synthetixio/ngrok:457bb48776c3b14de232d9dda620ba9188dc40ac-base
ports:
- '4040:4040'
command:
[
'ngrok',
'http',
'display:8080',
'--authtoken',
'${NGROK_AUTH}'
]
depends_on:
- display
networks:
- x11
video:
profiles:
- synpress
container_name: video
image: synthetixio/video:457bb48776c3b14de232d9dda620ba9188dc40ac-base
volumes:
- ./docker/videos-ci:/videos
environment:
- FILE_NAME=CI-full-video.mp4
depends_on:
- display
networks:
- x11
agd:
profiles:
- synpress
container_name: agoric_chain
image: frazarshad/offerup-test-chain:1.0.0
platform: linux/amd64
ports:
- 26656:26656
- 26657:26657
- 1317:1317
environment:
DEST: 1
DEBUG: "SwingSet:ls,SwingSet:vat"
volumes:
- ./tools/contract:/workspace
entrypoint: /workspace/scripts/run-chain.sh
networks:
- x11
networks:
x11: