12345678910111213141516171819202122232425 |
- DOCUMENT_ROOT=./www
- VHOSTS_DIR=./config/vhosts
- APACHE_LOG_DIR=./logs/apache2
- PHP_INI=./config/php/php.ini
- MYSQL_DATA_DIR=./data/mysql
- MYSQL_LOG_DIR=./logs/mysql
-
- # If you already has the port 80 in use, you can change it (for example if you have Apache)
- HOST_MACHINE_UNSECURE_HOST_PORT=80
- HOST_MACHINE_SECURE_HOST_PORT=443
-
- # If you already has the port 3306 in use, you can change it (for example if you have MySQL)
- HOST_MACHINE_MYSQL_PORT=3306
-
- # If you already has the port 6379 in use, you can change it (for example if you have Redis)
- HOST_MACHINE_REDIS_PORT=6379
-
-
- # MySQL root user password
- MYSQL_ROOT_PASSWORD=logipro
-
- # Database settings: Username, password and database name
- MYSQL_USER=docker
- MYSQL_PASSWORD=docker
- MYSQL_DATABASE=docker
|