-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
76 lines (50 loc) · 1.53 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
############################
###> docker configuration ###
DOCKER_TAG=latest
###< docker configuration ###
############################
############################
###> nginx configuration ###
NGINX_PORT=8080
###< nginx configuration ###
############################
##########################
###> php configuration ###
# php version
# ie: 5.5, 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
# 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
###< php configuration ###
##########################
#############################
###> nodejs configuration ###
# node version
# ie: 10.x, 11.x, 12.x, 13.x, 14.x, 16.x, 17.x, 18.x or any valid version
NODE_VERSION=18.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 ###
#################################