Skip to content

Commit a6d0c70

Browse files
committed
Build/Test Tools: Change 5.8 default values of LOCAL_PHP/LOCAL_DB_VERSION.
This changes the default values for `LOCAL_PHP` and `LOCAL_DB_VERSION` in the 5.8 branch from `latest` to `8.0-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.8@58665 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 3593727 commit a6d0c70

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232
# The PHP container.
3333
##
3434
php:
35-
image: wordpressdevelop/php:${LOCAL_PHP-latest}
35+
image: wordpressdevelop/php:${LOCAL_PHP-8.0-fpm}
3636

3737
networks:
3838
- wpdevnet
@@ -61,7 +61,7 @@ services:
6161
# The MySQL container.
6262
##
6363
mysql:
64-
image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-latest}
64+
image: ${LOCAL_DB_TYPE-mysql}:${LOCAL_DB_VERSION-5.7}
6565
platform: linux/amd64
6666

6767
networks:
@@ -90,7 +90,7 @@ services:
9090
# The WP CLI container.
9191
##
9292
cli:
93-
image: wordpressdevelop/cli:${LOCAL_PHP-latest}
93+
image: wordpressdevelop/cli:${LOCAL_PHP-8.0-fpm}
9494

9595
networks:
9696
- wpdevnet
@@ -120,7 +120,7 @@ services:
120120
# The PHPUnit container.
121121
##
122122
phpunit:
123-
image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-latest}
123+
image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-8.0-fpm}
124124

125125
networks:
126126
- wpdevnet

0 commit comments

Comments
 (0)