|
@@ -0,0 +1,25 @@
|
|
1
|
+DOCUMENT_ROOT=./www
|
|
2
|
+VHOSTS_DIR=./config/vhosts
|
|
3
|
+APACHE_LOG_DIR=./logs/apache2
|
|
4
|
+PHP_INI=./config/php/php.ini
|
|
5
|
+MYSQL_DATA_DIR=./data/mysql
|
|
6
|
+MYSQL_LOG_DIR=./logs/mysql
|
|
7
|
+
|
|
8
|
+# If you already has the port 80 in use, you can change it (for example if you have Apache)
|
|
9
|
+HOST_MACHINE_UNSECURE_HOST_PORT=80
|
|
10
|
+HOST_MACHINE_SECURE_HOST_PORT=443
|
|
11
|
+
|
|
12
|
+# If you already has the port 3306 in use, you can change it (for example if you have MySQL)
|
|
13
|
+HOST_MACHINE_MYSQL_PORT=3306
|
|
14
|
+
|
|
15
|
+# If you already has the port 6379 in use, you can change it (for example if you have Redis)
|
|
16
|
+HOST_MACHINE_REDIS_PORT=6379
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+# MySQL root user password
|
|
20
|
+MYSQL_ROOT_PASSWORD=logipro
|
|
21
|
+
|
|
22
|
+# Database settings: Username, password and database name
|
|
23
|
+MYSQL_USER=docker
|
|
24
|
+MYSQL_PASSWORD=docker
|
|
25
|
+MYSQL_DATABASE=docker
|