This repository has been archived by the owner on Dec 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
82 lines (61 loc) · 1.46 KB
/
.env.example
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# The app hostname
APP_HOST=mydockpress.test
# Prefix for all container names. Don't use spaces.
CONTAINER_PREFIX=mydockpress
# Path of your codebase (without trailing slash)
APP_SRC=./src
# Port on which nginx is listening
NGINX_PORT_80=80
# Specify which PHP version to use
#
# Supported values:
# 7.2
# 7.3
# 7.4
#
PHP_VERSION=7.4
# Specify a Docker image for your database (MySQL or MariaDB)
#
# Supported values:
# mysql
# mariadb
#
# You can specify a valid tag
#
# Please see https://hub.docker.com/_/mysql and https://hub.docker.com/_/mariadb
# for valid tags.
#
# Examples:
# mysql
# mariadb
# mysql:8
# mysql:latest
# mariadb:10.3
#
DATABASE_IMAGE=mysql:latest
# MySQL / MariaDB PORT
MYSQL_PORT=3306
# Database name
MYSQL_DATABASE=mydockpress
# Database user
MYSQL_USER=user
# Database user password
MYSQL_PASSWORD=password
# Database root password
MYSQL_ROOT_PASSWORD=root
# Yes, this environment has XDebug enabled (this is a DEV environment, don't forget it)
ENABLE_XDEBUG=1
# Port on which mailhog replies (SMTP server for development purpose: https://github.com/mailhog/MailHog)
MAILHOG_PORT=8081
## User enabled to login into wp-admin ##
# Username
WP_ADMIN_USER=user
# Password
WP_ADMIN_PASSWORD=mysecurepassword
# E-mail address
## WordPress settings
# Please specify a valid locale (see https://translate.wordpress.org/ for codes)
WP_LOCALE=it_IT
# Site / blog title
WP_SITE_TITLE="MyDockpress Blog"