-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.dev
More file actions
29 lines (22 loc) · 776 Bytes
/
.env.dev
File metadata and controls
29 lines (22 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Change PROJECT_NAME to avoid conflicts with other Docker volume names
PROJECT_NAME=app
# Ref https://make.wordpress.org/hosting/handbook/compatibility/
# Ref https://hub.docker.com/_/wordpress
WORDPRESS_IMAGE=wordpress:php8.2-apache
# Ref https://xdebug.org/docs/compat
# Ref https://github.com/xdebug/xdebug/branches
PHP_XDEBUG_BRANCH=xdebug_3_4
# Ref https://hub.docker.com/_/mysql
MYSQL_IMAGE=mysql:8.0
MYSQL_USER=db_user
MYSQL_PASSWORD=db_password
MYSQL_ROOT_PASSWORD=root_password
# IMPORTANT: Only modify WP_DIR if you want to change the WordPress installation directory
WP_DIR=./wordpress
DEV_DIR=./dev
# WordPress installation parameters
WP_URL=http://localhost
WP_TITLE="Test Site"
WP_ADMIN_USER=admin
WP_ADMIN_PASSWORD=admin
WP_ADMIN_EMAIL=test@example.com