Make WordPress Core

Changeset 58666


Ignore:
Timestamp:
07/03/2024 05:38:32 PM (3 months ago)
Author:
desrosj
Message:

Build/Test Tools: Change 5.7 default values of LOCAL_PHP/LOCAL_DB_VERSION.

This changes the default values for LOCAL_PHP and LOCAL_DB_VERSION in the 5.7 branch from latest to 8.0-fpm (with beta support) and 5.7, respectively, to properly reflect the highest versions of PHP and MySQL that this branch will support.

See #61533.

Location:
branches/5.7
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.7/.env

    r55518 r58666  
    1717
    1818# The PHP version to use. Valid options are 'latest', and '{version}-fpm'.
    19 LOCAL_PHP=latest
     19LOCAL_PHP=8.0-fpm
    2020
    2121##
  • branches/5.7/docker-compose.yml

    r58599 r58666  
    3232  ##
    3333  php:
    34     image: wordpressdevelop/php:${LOCAL_PHP-latest}
     34    image: wordpressdevelop/php:${LOCAL_PHP-8.0-fpm}
    3535
    3636    networks:
     
    5454  ##
    5555  mysql:
    56     image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-latest}
     56    image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-5.7}
    5757    platform: linux/amd64
    5858
     
    7777  ##
    7878  cli:
    79     image: wordpressdevelop/cli:${LOCAL_PHP-latest}
     79    image: wordpressdevelop/cli:${LOCAL_PHP-8.0-fpm}
    8080
    8181    networks:
     
    9898  ##
    9999  phpunit:
    100     image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-latest}
     100    image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-8.0-fpm}
    101101
    102102    networks:
Note: See TracChangeset for help on using the changeset viewer.