Make WordPress Core

Ticket #50042: 50042.diff

File 50042.diff, 1.1 KB (added by desrosj, 6 years ago)
  • .env

     
    1515# x.y PHP version from 5.2 onwards.
    1616LOCAL_PHP=latest
    1717
     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.
     25LOCAL_PHPUNIT=latest
     26
    1827# Whether or not to enable XDebug.
    1928LOCAL_PHP_XDEBUG=false
    2029
  • docker-compose.yml

     
    9696  # The PHPUnit container.
    9797  ##
    9898  phpunit:
    99     image: wordpressdevelop/phpunit:${LOCAL_PHP-latest}
     99    image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-latest}
    100100
    101101    networks:
    102102      - wpdevnet