forked from graycoreio/mage2docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.sample
87 lines (72 loc) · 3.25 KB
/
.env.sample
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
83
84
85
86
87
##########################################################################
# Docker Compose Environment Variables
# See https://docs.docker.com/compose/env-file/
###########
##########################################################################
# Docker Compose Project Name
# See https://docs.docker.com/compose/reference/envvars/#compose_project_name
###########
COMPOSE_PROJECT_NAME=YOUR_PROJECT_NAME
##########################################################################
# Docker Compose File
# See https://docs.docker.com/compose/reference/envvars/#compose_file
# * Note that you can safely switch 2.3 with another release line of Magento2. e.g. 2.4
# * Legacy (Deprecated)
# * See: "Dolphin" https://github.com/graycoreio/mage2docker/tree/master/docs/stories/dolphin.md
###########
# Mac
# COMPOSE_FILE=docker-compose.yml:./compose/base/2.3.yml:compose/sync/docker-compose.partialsync.yml
# Windows (WSL) and Linux
# COMPOSE_FILE=docker-compose.yml:./compose/base/2.3.yml:compose/sync/docker-compose.fullsync.yml
# Agnostic (Dolphin)
# COMPOSE_FILE=docker-compose.yml:./compose/base/2.3.yml:compose/sync/containersync.yml
##########################################################################
# Whether or not to use the composer project as a basis for the project, or a git repo.
# You should likely only need this when creating a green-lawn project or you're testing a release.
###########
COMPOSER_PROJECT_ENABLED=true
##########################################################################
# The Composer Project to install. Note, that on certain PHP versions, the glob
# syntax does not work, so you may need to specify an exact version.
# Ignored unless COMPOSER_PROJECT_ENABLED is `true`.
###########
COMPOSER_PROJECT=magento/project-community-edition=2.4.*
##########################################################################
# The git repo representing the Magento 2 project.
# Ignored unless COMPOSER_PROJECT_ENABLED is `false`.
###########
GIT_REPO=https://github.com/magento/magento2.git
##########################################################################
# The domain used to serve the app in the local environment.
###########
MAGENTO_DOMAIN=magento2.test
##########################################################################
# The path where the admin UI can be located.
###########
MAGENTO_ADMIN_PATH=admin
##########################################################################
# The admin username.
###########
MAGENTO_ADMIN_USERNAME=admin
##########################################################################
# The admin password.
###########
MAGENTO_ADMIN_PASSWORD=admin123
##########################################################################
# The default Language of Magento.
###########
MAGENTO_LANGUAGE=en_US
##########################################################################
# The currency of Magento.
###########
MAGENTO_CURRENCY=USD
##########################################################################
# The timezone of Magento.
###########
MAGENTO_TIMEZONE="America/Chicago"
##########################################################################
# Whether or not to use sample data. By default, we use Venia.
# Supported values include 'venia', 'luma', 'none'
# Default: 'venia'
###########
MAGENTO_SAMPLE_DATA="venia"