-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
116 lines (77 loc) · 2.46 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
############################
###> docker configuration ###
DOCKER_TAG=latest
###< docker configuration ###
############################
############################
###> nginx configuration ###
NGINX_PORT=8080
###< nginx configuration ###
############################
##########################
###> php configuration ###
# php version
# ie: 5.6, 7.0, 7.1, 7.2, 7.3, 7.4, 8.0 and 8.1
PHP_VERSION=8.1
# php fpm expose port
PHP_FPM_PORT=9000
# enable amqp
PHP_ENABLE_AMQP=0
# you also need to uncomment redis service from docker-compose.yml
# below flag will only enable/disable php redis extension
PHP_ENABLE_REDIS=0
# make sure xdebug (IDE) listens to PHP_FPM_PORT
PHP_ENABLE_XDEBUG=0
# you also need to uncomment mongodb service from docker-compose.yml
# below flag will only enable/disable php mongodb extension
# also check below mongodb configuration for more info
PHP_ENABLE_MONGODB=0
###< php configuration ###
##########################
#############################
###> nodejs configuration ###
# node version
# ie: 10.x, 11.x, 12.x, 13.x, 14.x, 16.x, 17.x or any valid version
NODE_VERSION=16.x
###< nodejs configuration ###
#############################
##############################
###> mariadb configuration ###
# configure database using mysql://root:root@mariadb:3306/project?serverVersion=mariadb-10.5.5
# mariadb version
# ie: 10.1, 10.2, 10.3, 10.4, 10.5 or 10 or any valid version
MARIADB_VERSION=10
# mariadb expose port
MARIADB_PORT=3306
# host=mariadb
# username=root
MARIADB_ROOT_PASSWORD=root
MARIADB_DATABASE_NAME=project
###< mariadb configuration ###
##############################
#################################
###> phpmyadmin configuration ###
PHPMYADMIN_PORT=8180
###< phpmyadmin configuration ###
#################################
##############################
###> mongodb configuration ###
# you need to uncomment mongodb service from docker-compose.yml
# connect compass directly using mongodb://root:root@localhost:27017/?authSource=admin
# mongodb version
# ie: 4.0, 4.1, 4.2, 4.3, 4.4 or 4 or any valid version
MONGODB_VERSION=4
# mongodb expose port
MONGODB_PORT=27017
# host=mongodb
# database_name=project
MONGODB_ROOT_USERNAME=root
MONGODB_ROOT_PASSWORD=root
###< mongodb configuration ###
##############################
##################################
###> mailcatcher configuration ###
# configure email to smtp://mailcatcher:1025
MAILCATCHER_PORT=8280
###< mailcatcher configuration ###
##################################