Skip to content
Snippets Groups Projects
Commit 6be1ba8d authored by Bertrand Goareguer's avatar Bertrand Goareguer Committed by Cédric OLIVIER
Browse files

fix: "Add registry name in all Docker images"

parent 2759c166
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ It uses the following variable:
| Name | description | default value |
| --------------------- | ---------------------------------------- | ----------------- |
| `CYPRESS_IMAGE` | The Docker image used to run Cypress (use [included images](https://github.com/cypress-io/cypress-docker-images/tree/master/included) only). | `cypress/included:12.0.2` |
| `CYPRESS_IMAGE` | The Docker image used to run Cypress (use [included images](https://github.com/cypress-io/cypress-docker-images/tree/master/included) only). | `registry.hub.docker.com/cypress/included:12.0.2` |
| `CYPRESS_PROJECT_DIR` | The Cypress project directory (containing `cypress.config.js` or `cypress.config.ts`) | `.` |
| `CYPRESS_EXTRA_ARGS` | Cypress extra [run options](https://docs.cypress.io/guides/guides/command-line.html#cypress-run) (to select a different browser, configuration or spec files for e.g.) | _none_ |
| `REVIEW_ENABLED` | Set to `true` to enable Cypress tests on review environments (dynamic environments instantiated on development branches) | _none_ (disabled) |
......
......@@ -7,7 +7,7 @@
{
"name": "CYPRESS_IMAGE",
"description": "The Docker image used to run Cypress (use [included images](https://github.com/cypress-io/cypress-docker-images/tree/master/included) only).",
"default": "cypress/included:12.0.2"
"default": "registry.hub.docker.com/cypress/included:12.0.2"
},
{
"name": "CYPRESS_PROJECT_DIR",
......
......@@ -49,7 +49,7 @@ variables:
TBC_TRACKING_IMAGE: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
# Default Docker image (can be overridden)
CYPRESS_IMAGE: "cypress/included:12.0.2"
CYPRESS_IMAGE: "registry.hub.docker.com/cypress/included:12.0.2"
CYPRESS_PROJECT_DIR: "."
# default production ref name (pattern)
PROD_REF: '/^(master|main)$/'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment