-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.sample
More file actions
executable file
·135 lines (91 loc) · 2.82 KB
/
.env.sample
File metadata and controls
executable file
·135 lines (91 loc) · 2.82 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
############################
###> docker configuration ###
# https://hub.docker.com/orgs/readymadehost/repositories
DOCKER_TAG=latest
###< docker configuration ###
############################
#############################
###> varnish configuration ###
# varnish version
# ie: 7.0, 6.5, 6.4, 6.3 or any valid version
# https://hub.docker.com/_/varnish?tab=tags
VARNISH_VERSION=7.0
VARNISH_PORT=8088
###< varnish configuration ###
#############################
############################
###> nginx configuration ###
NGINX_PORT=8080
###< nginx configuration ###
############################
##########################
###> php configuration ###
# php version
# ie: 8.4, 8.3, 8.2, 8.1, 8.0 , 7.4, 7.3, 7.2 and 7.1
PHP_VERSION=8.1
# php fpm expose port
PHP_FPM_PORT=9000
# you also need to uncomment redis service from docker-compose.yml
# below flag will only enable/disable php redis extension
PHP_ENABLE_REDIS=1
# make sure xdebug (IDE) listens to PHP_FPM_PORT
PHP_ENABLE_XDEBUG=0
###< php configuration ###
##########################
#############################
###> nodejs configuration ###
# node version
# ie: 20.x, 18.x, 17.x or any valid version
NODE_VERSION=20.x
###< nodejs configuration ###
#############################
##############################
###> mariadb configuration ###
# configure database using mysql://root:root@mariadb:3306/project?serverVersion=mariadb-10.5.5
# mariadb version
# ie: 10.4, 10.3, 10.2, 10.1 or any valid version
# https://hub.docker.com/_/mariadb?tab=tags
MARIADB_VERSION=10.4
# mariadb expose port
MARIADB_PORT=3306
# host=mariadb
# username=root
MARIADB_ROOT_PASSWORD=root
MARIADB_DATABASE_NAME=project
###< mariadb configuration ###
##############################
#################################
###> phpmyadmin configuration ###
PHPMYADMIN_PORT=8081
###< phpmyadmin configuration ###
#################################
#############################
###> redis configuration ###
# redis version
# ie: 6.2, 6.x, 5.x or any valid version
# https://hub.docker.com/_/redis?tab=tags
REDIS_VERSION=6.2
###< redis configuration ###
#############################
#############################
###> elasticsearch configuration ###
# elasticsearch version
# ie: 7.x, 6.x, 5.x or any valid version
# https://hub.docker.com/_/elasticsearch?tab=tags
ELASTICSEARCH_VERSION=7.17.2
###< elasticsearch configuration ###
#############################
#############################
###> rabbitmq configuration ###
# rabbitmq version
# ie: 3.x, 2.x or any valid version
# https://hub.docker.com/_/rabbitmq?tab=tags
RABBITMQ_VERSION=3.9
###< rabbitmq configuration ###
#############################
##################################
###> mailcatcher configuration ###
# configure email to smtp://mailcatcher:1025
MAILCATCHER_PORT=8082
###< mailcatcher configuration ###
##################################