-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.dist
48 lines (41 loc) · 939 Bytes
/
.env.dist
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
#!/usr/bin/env bash
# Project
PROJECT_NAME=my_magento2
SRC_PATH_CONTAINER=/var/www/html
SRC_PATH_INDEX=/
PROJECT_PATH=../magento
IP_SECTION=12
# To get UID exec command on the host machine "echo $UID"
USER_ID=1000
# Nginx
NGINX_VERSION=1.19
NGINX_HOST=dev.magento.com
NGINX_PORT=80
NGINX_SECURE_PORT=443
# To check ip, use command: "docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' my_magento2_nginx"
NGINX_IP=172.28.12.2
# PHP
PHP_VERSION=8.1
# MySQL
MYSQL_VERSION=8
MYSQL_HOST=mysql
MYSQL_DATABASE=magento
MYSQL_ROOT_USER=root
MYSQL_ROOT_PASSWORD=root
MYSQL_USER=magentousr
MYSQL_PASSWORD=magentopsw
# Redis
REDIS_VERSION=5.0
# Elastic Search
ES_VERSION=7.17.9
# Magento
M2_ADMIN_FIRSTNAME=Admin
M2_ADMIN_LASTNAME=Admin
M2_ADMIN_URL=admin_1234
M2_ADMIN_USER=admin
M2_ADMIN_PASSWORD=123123q
M2_LANGUAGE=en_US
M2_CURRENCY=EUR
M2_TIMEZONE=Europe/Paris
M2_VERSION=2.4.6-p3