Commit b9d1a0a5 authored by Cédric OLIVIER's avatar Cédric OLIVIER
Browse files

Merge branch '10-add-registry-name-in-all-docker-images' into 'master'

Resolve "Add registry name in all Docker images"

Closes #10

See merge request to-be-continuous/postman!30
parents c33020c2 fc510091
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ It uses the following variable:

| Name                  | description                              | default value     |
| --------------------- | ---------------------------------------- | ----------------- |
| `POSTMAN_IMAGE`       | The Docker image used to run Postman CLI. | `postman/newman:latest` |
| `POSTMAN_IMAGE`       | The Docker image used to run Postman CLI. | `registry.hub.docker.com/postman/newman:latest` |
| `POSTMAN_COLLECTIONS` | The matcher to select Postman collection file(s) to run. | `postman/*collection.json` |
| `POSTMAN_EXTRA_ARGS`  | Newman extra [run options](https://github.com/postmanlabs/newman#command-line-options) (to use global variables, an environment or a data source for e.g.) | _none_ |
| `REVIEW_ENABLED`      | Set to `true` to enable Postman tests on review environments (dynamic environments instantiated on development branches) | _none_ (disabled) |
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
    {
      "name": "POSTMAN_IMAGE",
      "description": "The Docker image used to run Postman CLI.",
      "default": "postman/newman:latest"
      "default": "registry.hub.docker.com/postman/newman:latest"
    },
    {
      "name": "POSTMAN_COLLECTIONS",
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ variables:
  TBC_TRACKING_IMAGE: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"

  # Default Docker image (can be overridden)
  POSTMAN_IMAGE: "postman/newman:latest"
  POSTMAN_IMAGE: "registry.hub.docker.com/postman/newman:latest"
  POSTMAN_COLLECTIONS: "postman/*collection.json"
  # default production ref name (pattern)
  PROD_REF: '/^(master|main)$/'