-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.env
50 lines (37 loc) · 1.57 KB
/
.env
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
# Please Note:
# In PHP Versions <= 7.4 MySQL8 is not supported due to lacking pdo support
# To determine the name of your containers
COMPOSE_PROJECT_NAME=databasesystem
# Possible values: php54, php56, php71, php72, php73, php74
PHPVERSION=php74
DOCUMENT_ROOT=./www
VHOSTS_DIR=./config/vhosts
APACHE_LOG_DIR=./logs/apache2
PHP_INI=./config/php/php.ini
# Possible values: mariadb, mysql, mysql8
DATABASE=mysql
MYSQL_DATA_DIR=./data/mysql
MYSQL_LOG_DIR=./logs/mysql
# If you already have the port 80 in use, you can change it (for example if you have Apache)
HOST_MACHINE_UNSECURE_HOST_PORT=83
HOST_MACHINE_SECURE_HOST_PORT=444
# If you already have the port 3306 in use, you can change it (for example if you have MySQL)
HOST_MACHINE_MYSQL_PORT=3307
# If you already have the port 8080 in use, you can change it
HOST_MACHINE_PMA_PORT=9090
# If you already has the port 6379 in use, you can change it (for example if you have Redis)
HOST_MACHINE_REDIS_PORT=6380
# If you already has the port 8081 in use, you can change it (for example if you have swagger-editor)
HOST_MACHINE_SWAGGER_EDITOR_EDITOR = 8081
# If you already has the port 8082 in use, you can change it (for example if you have swagger-ui)
HOST_MACHINE_SWAGGER_EDITOR_UI = 8082
# If you already has the port 8082 in use, you can change it (for example if you have swagger-ui)
HOST_MACHINE_REACT = 3000
# MySQL root user password
MYSQL_ROOT_PASSWORD=tiger
# Database settings: Username, password and database name
MYSQL_USER=docker
MYSQL_PASSWORD=docker
MYSQL_DATABASE=database_project
NGROK_AUTH_TOKEN=XXX
HOST_MACHINE_Nodejs=4000