Make WordPress Core

Changeset 58657


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

Build/Test Tools: Change the default value of LOCAL_PHP.

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

See #61533.

Location:
branches/6.6
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/6.6/.env

    r58097 r58657  
    1616
    1717# The PHP version to use. Valid options are 'latest', and '{version}-fpm'.
    18 LOCAL_PHP=latest
     18LOCAL_PHP=8.3-fpm
    1919
    2020# Whether or not to enable Xdebug.
  • branches/6.6/docker-compose.yml

    r58157 r58657  
    3333  ##
    3434  php:
    35     image: wordpressdevelop/php:${LOCAL_PHP-latest}
     35    image: wordpressdevelop/php:${LOCAL_PHP-8.3-fpm}
    3636
    3737    networks:
     
    6464  ##
    6565  mysql:
    66     image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-latest}
     66    image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-8.0}
    6767
    6868    networks:
     
    9292  ##
    9393  cli:
    94     image: wordpressdevelop/cli:${LOCAL_PHP-latest}
     94    image: wordpressdevelop/cli:${LOCAL_PHP-8.3-fpm}
    9595
    9696    networks:
Note: See TracChangeset for help on using the changeset viewer.