Skip to content

Commit

Permalink
Build/Test Tools: Change 6.3 default values of LOCAL_PHP/`LOCAL_DB_…
Browse files Browse the repository at this point in the history
…VERSION`.

This changes the default values for `LOCAL_PHP` and `LOCAL_DB_VERSION` in the 6.3 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.3@58660 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
desrosj committed Jul 3, 2024
1 parent e6c7063 commit 4ff61c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 4ff61c4

Please sign in to comment.