Make WordPress Core

Changeset 58668


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

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

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

See #61533.

Location:
branches/5.5
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.5/.env

    r55520 r58668  
    1717
    1818# The PHP version to use. Valid options are 'latest', and '{version}-fpm'.
    19 LOCAL_PHP=latest
     19LOCAL_PHP=7.4-fpm
    2020
    2121##
  • branches/5.5/docker-compose.yml

    r58610 r58668  
    3333  ##
    3434  php:
    35     image: wordpressdevelop/php:${LOCAL_PHP-latest}
     35    image: wordpressdevelop/php:${LOCAL_PHP-7.4-fpm}
    3636
    3737    networks:
     
    6363  ##
    6464  mysql:
    65     image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-latest}
     65    image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-5.7}
    6666    platform: linux/amd64
    6767
     
    122122  ##
    123123  phpunit:
    124     image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-latest}
     124    image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-7.4-fpm}
    125125
    126126    networks:
Note: See TracChangeset for help on using the changeset viewer.