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

This changes the default values for `LOCAL_PHP` and `LOCAL_DB_VERSION` in the 6.2 branch from `latest` to `8.2-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.

git-svn-id: https://develop.svn.wordpress.org/branches/6.2@58661 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jonathan Desrosiers 2024-07-03 17:28:43 +00:00
parent f6dee96c32
commit 39e2a3cb8f

View File

@ -32,7 +32,7 @@ services:
# The PHP container.
##
php:
image: wordpressdevelop/php:${LOCAL_PHP-latest}
image: wordpressdevelop/php:${LOCAL_PHP-8.2-fpm}
networks:
- wpdevnet
@ -63,7 +63,7 @@ services:
# The MySQL container.
##
mysql:
image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-latest}
image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-5.7}
platform: linux/amd64
networks:
@ -92,7 +92,7 @@ services:
# The WP CLI container.
##
cli:
image: wordpressdevelop/cli:${LOCAL_PHP-latest}
image: wordpressdevelop/cli:${LOCAL_PHP-8.2-fpm}
networks:
- wpdevnet