Commit dfdd9806 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

doc: warn default Docker image has to be changed

parent b820ee09
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ The Gradle template uses some global configuration used throughout all jobs.

| Name                    | description                                                               | default value                                                                            |
| ----------------------- | ------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
| `GRADLE_IMAGE`          | The Docker image used to run Gradle                                       | `gradle:latest`                                 |
| `GRADLE_IMAGE`          | The Docker image used to run Gradle <br/>:warning: **set the version required by your project** | `gradle:latest`                                 |
| `GRADLE_CLI_OPTS`       | Additional Gradle options used on the command line                        | `None`                                                                                   |
| `GRADLE_CLI_BIN`        | The location of the gradle binary. If you prefer using a [gradle wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html) you should override this (for e.g. `gradlew`) | `gradle`                                                                                 |
| `GRADLE_USER_HOME`      | The gradle user home                                                      | `$CI_PROJECT_DIR/.gradle`                                                                |
@@ -257,6 +257,6 @@ publishing {
}
```

## Gitlab compatibility
## GitLab compatibility

:information_source: This template is actually tested and validated on GitLab Community Edition instance version 13.12.11
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
  "variables": [
    {
      "name": "GRADLE_IMAGE",
      "description": "The Docker image used to run Gradle - **it is highly recommended to set the specific version your project needs**",
      "description": "The Docker image used to run Gradle - **set the version required by your project**",
      "default": "gradle:latest"
    },
    {