Ticket #50042: 50042.diff
| File 50042.diff, 1.1 KB (added by , 6 years ago) |
|---|
-
.env
15 15 # x.y PHP version from 5.2 onwards. 16 16 LOCAL_PHP=latest 17 17 18 # The PHPUnit version to use. Valid options are 'latest', '{phpversion}-fpm' for the latest supported 19 # version of PHPUnit on the specified PHP version, and '{phpunitversion}-php-{phpversion}-fpm' for a 20 # specific version of PHPUnit on a specific version of PHP. 21 # 22 # See https://hub.docker.com/r/wordpressdevelop/phpunit/tags for all valid versions. 23 # 24 # If specifying a specific version for LOCAL_PHP above, it's recommended to update LOCAL_PHPUNIT to match. 25 LOCAL_PHPUNIT=latest 26 18 27 # Whether or not to enable XDebug. 19 28 LOCAL_PHP_XDEBUG=false 20 29 -
docker-compose.yml
96 96 # The PHPUnit container. 97 97 ## 98 98 phpunit: 99 image: wordpressdevelop/phpunit:${LOCAL_PHP -latest}99 image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-latest} 100 100 101 101 networks: 102 102 - wpdevnet