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

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

Resolve "Add registry name in all Docker images"

Closes #23

See merge request to-be-continuous/node!41
parents 2780278c 4229c36c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ The Node.js template uses some global configuration used throughout all jobs.

| Name                   | description                                                                                      | default value     |
|------------------------|--------------------------------------------------------------------------------------------------|-------------------|
| `NODE_IMAGE`           | The Docker image used to run Node.js <br/>:warning: **set the version required by your project** | `node:lts-alpine` |
| `NODE_IMAGE`           | The Docker image used to run Node.js <br/>:warning: **set the version required by your project** | `registry.hub.docker.com/library/node:lts-alpine` |
| `NODE_MANAGER`         | The package manager used by your project (npm or yarn)<br/>**If undefined, automatic detection** | _none_            |
| `NODE_CONFIG_REGISTRY` | npm [registry](https://docs.npmjs.com/cli/v8/using-npm/registry)                                 | _none_            |
| `NODE_PROJECT_DIR`     | Node project root directory                                                                      | `.`               |
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
    {
      "name": "NODE_IMAGE",
      "description": "The Docker image used to run Node.js - **set the version required by your project**",
      "default": "node:lts-alpine"
      "default": "registry.hub.docker.com/library/node:lts-alpine"
    },
    {
      "name": "NODE_MANAGER",
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ variables:
  # Default node build directory
  NODE_BUILD_DIR: "dist"
  # Default docker image for Node
  NODE_IMAGE : "node:lts-alpine"
  NODE_IMAGE : "registry.hub.docker.com/library/node:lts-alpine"
  # Node lint
  NODE_LINT_ARGS: "run lint"
  # Node build