From 035d180444e7a846f0675c4909a70da54280e1f9 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Wed, 3 Jul 2024 17:32:25 +0000 Subject: [PATCH] Build/Test Tools: Change 5.9 default values of `LOCAL_PHP`/`LOCAL_DB_VERSION`. This changes the default values for `LOCAL_PHP` and `LOCAL_DB_VERSION` in the 5.9 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/5.9@58664 602fd350-edb4-49c9-b593-d223f7449a82 --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index db179f91b9fa9..3ee8efff0b3f0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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