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

This changes the default values for `LOCAL_PHP` and `LOCAL_DB_VERSION` in the 6.0 branch from `latest` to `8.1-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.0@58663 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jonathan Desrosiers 2024-07-03 17:31:21 +00:00
parent 75bb961693
commit 7ef2ad2f27

View File

@ -32,7 +32,7 @@ services:
# The PHP container.
##
php:
image: wordpressdevelop/php:${LOCAL_PHP-latest}
image: wordpressdevelop/php:${LOCAL_PHP-8.1-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.1-fpm}
networks:
- wpdevnet