wordpress-stack-with-xdebug/sample.env
2023-03-12 01:35:53 +08:00

11 lines
614 B
Bash

DB_ROOT_PASSWORD=wordpress
DB_DATABASE=wordpress
DB_USER=wordpress
DB_PASSWORD=wordpress
MARIADB_IMG_TAG=10.10
PHPMYADMIN_LOCAL_PORT=40081
REDIS_IMG_TAG=6.2.8
WORDPRESS_IMG_TAG=6.1.1
WORDPRESS_LOCAL_PORT=40080
WORDPRESS_CONFIG_EXTRA="define( 'WP_AUTO_UPDATE_CORE', false ); \n define( 'WP_HOME', 'http://localhost:40080' ); \n define( 'WP_SITEURL', 'http://localhost:40080' ); \n define( 'WP_REDIS_HOST', 'redis' ); \n define( 'WP_REDIS_PORT', 6379 ); \n // define( 'WP_REDIS_PASSWORD', 'secret' ); \n define( 'WP_REDIS_TIMEOUT', 1 ); \n define( 'WP_REDIS_READ_TIMEOUT', 1 ); \n define( 'WP_REDIS_DATABASE', 0 );"