forked from kasperisager/vanilla-dockerized
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
29 lines (23 loc) · 1.26 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
################################################################################
# MySQL
################################################################################
# This is the one environment variable that is required. This environment
# variable should be what you want to set the password for the root user to be.
MYSQL_ROOT_PASSWORD=password
# These optional environment variables are used in conjunction to both create a
# new user and set that user's password, which will subsequently be granted all
# permissions for the database specified by the optional MYSQL_DATABASE
# variable. Note that if you only have one of these two environment variables,
# then neither will do anything -- these two are required to be used in
# conjunction with one another.
#
# Additionally, there is no need to specify MYSQL_USER with root, as the root
# user already exists by default, and the password of that user is controlled by
# MYSQL_ROOT_PASSWORD (see above).
MYSQL_USER=vanilla
MYSQL_PASSWORD=password
# This optional environment variable denotes the name of a database to create.
# If a user/password was supplied (via the MYSQL_USER and MYSQL_PASSWORD
# environment variables) then that user will be granted (via GRANT ALL) access
# to this database.
MYSQL_DATABASE=vanilla