-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.dist
31 lines (25 loc) · 938 Bytes
/
.env.dist
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
30
31
WORDPRESS_VERSION=latest
MYSQL_VERSION=8.0
TIMEZONE=America/Toronto
PROJECT_NAME=default-name
DATABASE=wordpress
MYSQL_USER=wordpress
MYSQL_PASS=examplepassword
MYSQL_VOLUME=./apps/mysql
## If you want the whole wordpress directory to be mounted, use this:
WORDPRESS_LOCAL_VOLUME=./apps/wordpress
WORDPRESS_DISTANT_VOLUME=/var/www/html
## If you want only the wp-content directory to be mounted, use this:
# WORDPRESS_LOCAL_VOLUME=./wp-content
# WORDPRESS_DISTANT_VOLUME=/var/www/html/wp-content
## If you want to use a custom theme, use this:
# WORDPRESS_LOCAL_VOLUME=./wp-content/themes/my-theme
# WORDPRESS_DISTANT_VOLUME=/var/www/html/wp-content/themes/my-theme
## If you want to use a custom plugin, use this:
# WORDPRESS_LOCAL_VOLUME=./wp-content/plugins/my-plugin
# WORDPRESS_DISTANT_VOLUME=/var/www/html/wp-content/plugins/my-plugin
ADMINER_PORT=8181
WORDPRESS_PORT=8080
MAILHOG_PORT=1025
MAILHOG_WEB_PORT=8025
WP_DEBUG=true