You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`SOURCE_BRANCH`| Appended to the image name.<br />[Docker Cloud variable][docker-cloud-variable]| Current Git branch: `git rev-parse --abbrev-ref HEAD`| Any `string` value |
180
182
|`DOCKER_REPO`| The Dockerhub repository to perform the tasks against<br />[Docker Cloud variable][docker-cloud-variable]|`jestefane/php-dev`| A Dockerhub repository |
181
183
|`DOCKER_TAG`| A combinaison of one PHP version and one PHP variant to perform a task only one image (for example `7.1-cli`)<br />[Docker Cloud variable][docker-cloud-variable]| Empty | Any `PHP_VERSION`-`PHP_VARIANT` combinaison |
182
-
|`PHP_VERSIONS`| Space separated list of PHP versions to perform a task on. |`5.5 5.6 7.0 7.1 7.2 7.3`| Any combination from `5.5`, `5.6`, `7.0`, `7.1`, `7.2`, `7.3`|
184
+
|`PHP_VERSIONS`| Space separated list of PHP versions to perform a task on. |`5.5 5.6 7.0 7.1 7.2 7.3 7.4`| Any combination from `5.5`, `5.6`, `7.0`, `7.1`, `7.2`, `7.3`, `7.4`|
183
185
|`PHP_VARIANTS`| Space separated list of Docker build variants to perform a task on |`cli fpm`|`cli`, `fpm`|
184
186
|`BIN_DIR`| Directory in your `PATH` where you would like to symlink the scripts |`/usr/local/bin`| Any path on your system. Preferaby one already in your `PATH`|
185
187
|`SCRIPTS_DIR`| Directory where the scripts are generated (or removed). Relative to the repository's root |`scripts`| Any path on your system |
186
188
187
189
> **Note**: When overriding space separated values from the CLI, you have to escape spaces. For example in `bash` you can use `\` or wrap your values in `"`:
188
190
>
189
191
> ```sh
190
-
> $ make build PHP_VERSIONS=7.0\ 7.1\ 7.2\ 7.3 PHP_VARIANTS=cli\ fpm
0 commit comments