forked from lugosidomotor/DockerLocalWordPress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
executable file
·30 lines (21 loc) · 949 Bytes
/
.env
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
# (Required) URL of site you are bringing down to develop
PRODUCTION_URL=https://adampolisrental.lt/
# (Required) List of versions: https://hub.docker.com/_/wordpress/tags
WP_VERSION_TAG=latest
# (Required) The name of the project from repository
PROJECT_NAME=adampolisrental
# (Required) The table prefix of the WordPress database used in production site
WORDPRESS_DB_TABLE_PREFIX=zsxrl_
# (Optional) Use plugin folder names to disable certain plugins
WORDPRESS_DISABLE_PLUGINS=really-simple-ssl,wp-encrypt,ssl-insecure-content-fixer,force-https-redirect,easy-https-redirection,one-click-ssl,wp-force-ssl,really-simple-ssl-pro,auto-install-free-ssl
# WORDPRESS_DB_HOST = {mysql-service-name}:{port}
WORDPRESS_DB_HOST=mysql:3306
WORDPRESS_DB_USER=wordpress
WORDPRESS_DB_PASSWORD=password
WORDPRESS_DB_ROOT_PASSWORD=password
WORDPRESS_DB_NAME=wordpress
WORDPRESS_DEBUG=0
WORDPRESS_SSL=0
WORDPRESS_PORT=3500
MYSQL_PORT=3501
ADMINER_PORT=3502