mirror of
git://develop.git.wordpress.org/
synced 2025-04-02 19:22:34 +02:00
This changes the default value for `LOCAL_PHP` in the 5.9 branch from `latest` to `8.1-fpm` to reflect the highest version of PHP this branch will support (with beta support). After this change, future updates to the `latest` container built and published by the `wpdev-docker-images` repository will not cause failures in this branch. This also pins the version of PHP used in the E2E test workflow to PHP 8.0 to avoid deprecated notices related to #54914, which was not fixed until version 6.1. Follow up to [57198], [57199], [57200]. See #60095. git-svn-id: https://develop.svn.wordpress.org/branches/5.9@57201 602fd350-edb4-49c9-b593-d223f7449a82
52 lines
1.4 KiB
Bash
52 lines
1.4 KiB
Bash
##
|
|
# Default configuration options for the local dev environment.
|
|
#
|
|
# All of these options can be overridden by setting them as environment variables before starting
|
|
# the environment. You will need to restart your environment when changing any of these.
|
|
#
|
|
# Below, the following substitutions can be made:
|
|
# - '{version}': any major.minor PHP version from 5.2 onwards.
|
|
##
|
|
|
|
# The site will be available at http://localhost:LOCAL_PORT
|
|
LOCAL_PORT=8889
|
|
|
|
# Where to run WordPress from. Valid options are 'src' and 'build'.
|
|
LOCAL_DIR=src
|
|
|
|
# The PHP version to use. Valid options are 'latest', and '{version}-fpm'.
|
|
LOCAL_PHP=8.1-fpm
|
|
|
|
# Whether or not to enable XDebug.
|
|
LOCAL_PHP_XDEBUG=false
|
|
|
|
# Whether or not to enable Memcached.
|
|
LOCAL_PHP_MEMCACHED=false
|
|
|
|
##
|
|
# The database software to use.
|
|
#
|
|
# Supported values are `mysql` and `mariadb`.
|
|
##
|
|
LOCAL_DB_TYPE=mysql
|
|
|
|
##
|
|
# The database version to use.
|
|
#
|
|
# Defaults to 5.7 with the assumption that LOCAL_DB_TYPE is set to `mysql` above.
|
|
#
|
|
# When using `mysql`, see https://hub.docker.com/_/mysql/ for valid versions.
|
|
# When using `mariadb`, see https://hub.docker.com/_/mariadb for valid versions.
|
|
##
|
|
LOCAL_DB_VERSION=5.7
|
|
|
|
# The debug settings to add to `wp-config.php`.
|
|
LOCAL_WP_DEBUG=true
|
|
LOCAL_WP_DEBUG_LOG=true
|
|
LOCAL_WP_DEBUG_DISPLAY=true
|
|
LOCAL_SCRIPT_DEBUG=true
|
|
LOCAL_WP_ENVIRONMENT_TYPE=local
|
|
|
|
# The URL to use when running e2e tests.
|
|
WP_BASE_URL=http://localhost:${LOCAL_PORT}
|