From 6be1ba8dbec5dd57904c4a8a9a0706ce979ee076 Mon Sep 17 00:00:00 2001 From: Bertrand Goareguer <bertrand.goareguer@gmail.com> Date: Fri, 27 Jan 2023 07:50:58 +0000 Subject: [PATCH] fix: "Add registry name in all Docker images" --- README.md | 2 +- kicker.json | 2 +- templates/gitlab-ci-cypress.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 24de1bc..a28b9db 100644 --- a/README.md +++ b/README.md @@ -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) | diff --git a/kicker.json b/kicker.json index 1b0044a..2c0550e 100644 --- a/kicker.json +++ b/kicker.json @@ -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", diff --git a/templates/gitlab-ci-cypress.yml b/templates/gitlab-ci-cypress.yml index 1debe43..e19617a 100644 --- a/templates/gitlab-ci-cypress.yml +++ b/templates/gitlab-ci-cypress.yml @@ -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)$/' -- GitLab