File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ In this example we first run the unchanged image `cypress/base` as a container:
29
29
``` shell
30
30
cd examples/basic # Use a pre-configured simple Cypress E2E project
31
31
npm ci # Install Cypress
32
- docker run -it --rm -v .:/e2e -w /e2e cypress/base # Run image as container
32
+ docker run -it --rm -v .:/app -w /app cypress/base # Run image as container
33
33
```
34
34
35
- At the ` bash ` prompt ` :/e2e # ` , we can then enter the following commands:
35
+ At the ` bash ` prompt ` :/app # ` , we can then enter the following commands:
36
36
37
37
``` shell
38
38
npx cypress install # Install Cypress binary into running Docker container
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ In this example we first run the unchanged image `cypress/browsers` as a contain
34
34
``` shell
35
35
cd examples/basic # Use a pre-configured simple Cypress E2E project
36
36
npm ci # Install Cypress
37
- docker run -it --rm -v .:/e2e -w /e2e cypress/browsers # Run image as container
37
+ docker run -it --rm -v .:/app -w /app cypress/browsers # Run image as container
38
38
```
39
39
40
- At the ` bash ` prompt ` :/e2e # ` , we can then enter the following commands:
40
+ At the ` bash ` prompt ` :/app # ` , we can then enter the following commands:
41
41
42
42
``` shell
43
43
npx cypress install # Install Cypress binary into running Docker container
Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ In this example we first run the unchanged image `cypress/base` as a container:
26
26
``` shell
27
27
cd examples/chromium # Use a pre-configured simple Cypress E2E project
28
28
npm ci # Install Cypress
29
- docker run -it --rm -v .:/e2e -w /e2e cypress/base # Run image as container
29
+ docker run -it --rm -v .:/app -w /app cypress/base # Run image as container
30
30
```
31
31
32
- At the ` bash ` prompt ` :/e2e # ` , we can then enter the following commands:
32
+ At the ` bash ` prompt ` :/app # ` , we can then enter the following commands:
33
33
34
34
``` shell
35
35
apt-get update # Update package index
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ In this example we first run the unchanged image `cypress/base` as a container:
28
28
``` shell
29
29
cd examples/firefox-esr # Use a pre-configured simple Cypress E2E project
30
30
npm ci # Install Cypress
31
- docker run -it --rm -v .:/e2e -w /e2e cypress/base # Run image as container
31
+ docker run -it --rm -v .:/app -w /app cypress/base # Run image as container
32
32
```
33
33
34
- At the ` bash ` prompt ` :/e2e # ` , we can then enter the following commands:
34
+ At the ` bash ` prompt ` :/app # ` , we can then enter the following commands:
35
35
36
36
``` shell
37
37
apt-get update # Update package index
You can’t perform that action at this time.
0 commit comments