-
Notifications
You must be signed in to change notification settings - Fork 0
/
cy-open.sh
executable file
·30 lines (28 loc) · 1.11 KB
/
cy-open.sh
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
#!/usr/bin/env bash
# pass DISPLAY variable pointing at the host's X11 server
# like XQuartz
# read https://sourabhbajaj.com/blog/2017/02/07/gui-applications-docker-mac/
IP=$(ipconfig getifaddr en0)
# this assumes that X11 server allows connections over the network
# after we execute "/usr/X11/bin/xhost + $IP"
DISPLAY=$IP:0
# explanation of the "docker run" command line arguments
#
# --rm = remove container when exited
# -it = interactive terminal
# -v $PWD:/e2e = map current folder to /e2e inside the container
# -v /tmp/.X11-unix:/tmp/.X11-unix = map X11 socket file to communicate
# -w /e2e = set working directy to /e2e
# -e DISPLAY = pass environment variable DISPLAY to the container
# --entrypoint cypress = run "cypress" command
# with arguments AFTER Docker image name
# in our case they are "--project ." to point globally installed Cypress
# at the current working directory /e2e inside the container
docker run -it \
--rm \
-v $PWD:/e2e \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-w /e2e \
-e DISPLAY \
--entrypoint cypress \
cypress/included:6.0.0 open --project .