Commit 1526977d authored by Bertrand Goareguer's avatar Bertrand Goareguer Committed by Cédric OLIVIER
Browse files

fix: "Add registry name in all Docker images"

parent e74522e4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ The dbt template uses some global configuration used throughout all jobs.

| Name                  | description                            | default value     |
| --------------------- | -------------------------------------- | ----------------- |
| `DBT_IMAGE`           | The Docker image used to run dbt       | `python:3.11`   |
| `DBT_IMAGE`           | The Docker image used to run dbt       | `registry.hub.docker.com/library/python:latest`   |
| `DBT_PROJECT_DIR`     | The [dbt_project.yml](https://docs.getdbt.com/reference/dbt_project.yml) dir       | `.`   |
| `DBT_PROFILES_DIR`    | The dbt [profile](https://docs.getdbt.com/dbt-cli/configure-your-profile) location       | `.`   |
| `DBT_ADAPTER`         | The dbt [adapter](https://docs.getdbt.com/docs/available-adapters) to use       | __none__ (required)  |
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
    {
      "name": "DBT_IMAGE",
      "description": "The Docker image used to run dbt",
      "default": "python:3.11"
      "default": "registry.hub.docker.com/library/python:latest"
    },
    {
      "name": "DBT_PROJECT_DIR",
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ variables:
  TBC_TRACKING_IMAGE: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"

  # Default Docker image (use a public image - can be overridden)
  DBT_IMAGE: "python:latest"
  DBT_IMAGE: "registry.hub.docker.com/library/python:latest"

  DBT_PROJECT_DIR: "."
  DBT_PROFILES_DIR: "."