forked from alexcheng1982/docker-magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv
41 lines (36 loc) · 939 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
31
32
33
34
35
36
37
38
39
40
41
#
# MySQL Configuration
#
MYSQL_HOST=db
MYSQL_ROOT_PASSWORD=
MYSQL_USER=magento
MYSQL_PASSWORD=magento
MYSQL_DATABASE=magento
MYSQL_ALLOW_EMPTY_PASSWORD=yes
#
# Basic Magento Configuration (used when installing)
#
MAGENTO_INSTALL_SAMPLE_DATA=yes
MAGENTO_VERSION=2.1.3
MAGENTO_LANGUAGE=en_US
MAGENTO_TIMEZONE=Europe/Berlin
MAGENTO_DEFAULT_CURRENCY=EUR
MAGENTO_URL=http://magento.local/
MAGENTO_ADMIN_FIRSTNAME=Admin
MAGENTO_ADMIN_LASTNAME=MyStore
MAGENTO_ADMIN_USERNAME=admin
MAGENTO_ADMIN_PASSWORD=password123
#
# If you have a mapped volume, you may want to map your
# user id and group to the one used in the container in
# order to avoid permission problems
#
LOCAL_USER=2001
LOCAL_GROUP=33
#
# You really want to use redis - makes your development much faster!
# If this is enabled your config will be adjusted automatically
# when running `install` or `init-project`
#
REDIS_ENABLED=yes