-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.env-sample
81 lines (70 loc) · 2.1 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
#
# Configure what UID and GID your PHP container must use. This usually should
# match your Hosts UID and GID. To find your local UID you can run id -u and
# to find your local GID you can run id -g.
#
C_UID=1000
C_GID=1000
#
# Choose your PHP version. To see which versions are available see
# https://github.com/dockerwest/php-magento1
# https://github.com/dockerwest/php-magento2
#
PHPVERSION=7.4
#
# Choose what version of Nginx you want. To see which versions are available
# see:
# https://github.com/dockerwest/nginx-magento1
# https://github.com/dockerwest/nginx-magento2
#
NGINXVERSION=stable
#
# set the magento version, 1 or 2, the configuration is slightly different
# between those versions and some tools behave different
#
MAGENTOVERSION=2
#
# This setting defines what the hostname will be you can browse your magento
# app. The example configuration will be give you http://magento.docker.
#
BASEHOST=magento.docker
# when you need additional hosts to point to your environment you can add them
# comma separated to the EXTRAHOSTS variable, when not needed you must at least
# add something, let us default to www.${BASEHOST}
EXTRAHOSTS=www.magento.docker
#
# Choose whatever you want to use as default mysql root password.
#
MYSQL_ROOT_PASSWORD=toor
#
# A relative or absolute path to your magento code.
#
APPLICATION=../magento
#
# The `DEVELOPMENT` environment variable wich will enable xdebug, composer and
# enable timestamp checking in opcache.
#
DEVELOPMENT=1
#
# Choose your MySQL version. To see which versions are available see
# https://github.com/docker-library/mysql
#
MYSQLVERSION=8
#
# Choose your Elasticsearch version. To see which versions are available see
# https://github.com/blacktop/docker-elasticsearch-alpine
# https://hub.docker.com/r/blacktop/elasticsearch
#
# Only use single digit versions in here
#
ELASTICSEARCHVERSION=7
#
# Choose your NodeJS version. To see which versions are available see
# https://github.com/dockerwest/nodejs
#
NODEVERSION=10
#
# Set the default window manager when running the environment
# Available options are: tmux, screen and byobu
#
WINDOW_MANAGER=tmux