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 |
178
180
|`DOCKER_REPO`| The Dockerhub repository to perform the tasks against<br />[Docker Cloud variable][docker-cloud-variable]|`jestefane/php-dev`| A Dockerhub repository |
179
181
|`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 |
180
-
|`PHP_VERSIONS`| Space separated list of PHP versions to perform a task on. |`5.5 5.6 7.0 7.1 7.2`| Any combination from `5.5`, `5.6`, `7.0`, `7.1`, `7.2`|
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`|
181
183
|`PHP_VARIANTS`| Space separated list of Docker build variants to perform a task on |`cli fpm`|`cli`, `fpm`|
182
184
|`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`|
183
185
|`SCRIPTS_DIR`| Directory where the scripts are generated (or removed). Relative to the repository's root |`scripts`| Any path on your system |
184
186
185
187
> **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 `"`:
186
188
>
187
189
> ```sh
188
-
> $ make build PHP_VERSIONS=7.0\ 7.1\ 7.2 PHP_VARIANTS=cli\ fpm
190
+
> $ make build PHP_VERSIONS=7.0\ 7.1\ 7.2\ 7.3 PHP_VARIANTS=cli\ fpm
189
191
># or
190
-
> $ make build PHP_VERSIONS="7.0 7.1 7.2" PHP_VARIANTS="cli fpm"
192
+
> $ make build PHP_VERSIONS="7.0 7.1 7.2 7.3" PHP_VARIANTS="cli fpm"
0 commit comments