by Devin Yang
(This article was automatically translated.)

Published - 6 years ago ( Updated - 6 years ago )

This article explains about the .env settings on D-Laravel
MYSQL_ROOT_PASSWORD=secret
LARAVEL_INSTALLER='container'
DOCKER_SERVICES='docker-compose.yml service/redis.yml'

Under the directory of D-Laravel, there is a hidden file of .env.example.
We can change the name to .env through cp .env.example .env, and the bash of ./console or ./create will detect the function settings in .env.

The following describes these settings:
1. MYSQL_ROOT_PASSWORD=secret
If we want the mysql we use in Dlaravel to have a set password, we can make this change.
At the same time, the MYSQL_ROOT_PASSWORD annotation in docker-compose.yml should be removed.
When the parameters here are present,
1. When we enter ./console mysql , bash will add the -p parameter, so a screen asking for a password will pop up.
2. Since the root of mysql has already set a password, the setting here also allows us to build the database required by the Project when ./create project is used normally.
3. When starting for the first time, docker-compose.yml can also refer to the settings here to create a root password.
If the mysql on D-Laravel does not set the root password, you don’t need this setting, just delete the whole line.

2. LARAVEL_INSTALLER='container'
When .env has this setting, ./create [Project] allows the bash of ./create to understand that we need to use the laravel installer command in the container or on the host side to install the Laravel Project.
LARAVEL_INSTALLER='host' (Your system needs to have php, composer and laravel installer installed)
LARAVEL_INSTALLER='container'

3. DOCKER_SERVICES='docker-compose.yml service/redis.yml'
Multiple docker-compose structure language configuration files can be loaded through this setting.

Tags: dlaravel

Devin Yang

Feel free to ask me, if you don't get it.:)

No Comment

Post your comment

Login is required to leave comments

Similar Stories


dlaravel

Safe Update D-Laravel

How to upgrade the current D-Laravel. If your current use environment is very smooth and you have not encountered any problems, you don't need to update it. If you want to use the latest version, and bug fixes, etc., please read this article carefully, In order to ensure a smooth upgrade, the following is the recommended way to upgrade D-Laravel.

dlaravel,docker

D-Laravel learning three stages

Chat about the three stages of using D-Laravel, why use D-Laravel. Because the configuration files used by D-Laravel are quite simple, it is very suitable for beginners of Docker to learn, And users who do not know how to use Docker can also use the two commands ./console and ./create to create a project.