Laravel officially provides Homestead and Valet as local development environments. Homestead is an official pre-packaged Vagrant Box, which is a virtual machine. However, compared with docker, it takes up too much space, starts slowly, and responds very slowly. , now with docker, a better way, you can easily and conveniently build a complete PHP development environment.
This article introduces how to use docker to build a Laravel local environment.
First install docker.
laradock official documentation: http://laradock.io/
laradock github: https://github.com/laradock/l...
laradock is a fully functional PHP running environment for docker, deployed using docker-compose. (Special note: It is not only used to build the Laravel environment, but also supports all other PHP frameworks. It is a complete set of PHP environments.)
1. Clone laradock
git clone https://github.com/Laradock/laradock.git
2. Create an environment variable file
cp env-example .env
3. Directly use docker-compose to run the services that need to be enabled, such as:
docker-compose up -d nginx mysql redis beanstalkd
This will start the required PHP running environment, php-fpm will run by default, so there is no need to specify it.
Laravel configuration file needs to pay attention to the address of mysql and redis in the .env file It needs to be filled in like this instead of the ip address form:
DB_CONNECTION=mysql DB_HOST=mysql DB_PORT=3306 DB_DATABASE=tanteng.me DB_USERNAME=root DB_PASSWORD=root REDIS_HOST=redis REDIS_PASSWORD=null REDIS_PORT=6379
To access the site locally through the domain name, you need to bind the domain name in the host to the local one, and you also need to add nginx configuration. .
As shown in the figure, add the configuration file in the sites directory under the nginx folder of the laradock project.
To perform composer and other operations, you need to enter the workspace container. Use the command:
docker-compose exec workspace bash
Enter the workspace container, and you can perform compose commands and other operations. .
For specific usage issues, please refer to laradock official documentation, which is explained above.
The above is the detailed content of How to use Docker to build a Laravel environment. For more information, please follow other related articles on the PHP Chinese website!