by Devin Yang
(This article was automatically translated.)

Published - 7 years ago ( Updated - 7 years ago )

This article briefly introduces how to execute php artisan in the container under the alias a of D-Laravel.
In addition to executing the commands in the container on the host side through simple bash, you can also understand the operation behind it.

First of all, we know that D-Laravel can get the command of alias a through ./console alias a .
alias a="../../artisan.sh"

When we are in the folder of a D-Laravel Project on the host side (MacOS or Linux), such as sites/proj1.
We entered a --version alias, and we can run out the version number of Laravel, why?
In fact, executing a alias is to execute the bash artisan.sh in the dlaravel directory .
Through this bash, it is equivalent to helping us execute the official instructions as follows:
docker-compose exec -u dlaravel php php proj1/artisan --version

First, let’s check the version of docker-compose we use, we can use the command docker-compose version .
If your execution result is different from this article, you may need to update your docker-compose version.


Getting to the point, now let's take a look at what good things have been done after the a --version converted docker-compose command.
Click the image below to enlarge it:
docker-compose help

Therefore, after becoming an alias, it is relatively simple, and you can execute Laravel's artisan instructions without entering the php container.
Here I use the docker-compose standard command, enter the container, and then perform the process of php artisan --version

For example, at least three lines of instructions are required to execute the php artisan instruction to the proj1 folder.
1. docker-compose exec -u dlaravel php bash (execute the bash of the php container service name, so we have entered the container)
2. cd proj1 (enter the folder of proj1, in the container, the default working directory is /var/www/html)
3. php artisan --version (moved, executed to proj1's php artisan --version)

Instead of the a alias provided by D-Laravel , we only need a --version .

So, by analogy, if we want to see the php service in the container, the php version, what is the command?
php --version

Or, we want to find out what is the Linux core version used in the container of the php service?
uname -a

In the docker-compose environment of D-Laravel, the container service name of mysql is db.
Therefore, we exec db mysql to execute the mysql command in the container and enter mysql.
mysql

Hope this article, you can understand, when we use the simple alias, behind the scenes of D-Laravel is how to operate through the official command.

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

Ha, I successfully made D-Larave run in the Raspberry Pi ARM environment

I bought the Raspberry Pi this time because I thought it was very fun. In addition, the Mac environment in my home is too new to compile Line Simple Beacon normally. Through the Raspberry Pi, it is easy to use, and there will be no problems in the environment. Of course, there are more applications. But as the author of D-Laravel, of course I have to come and give it a try.....

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

Use docker in docker to build a D-Laravel test environment.

D-Laravel is an extremely easy-to-use and extremely flexible Laravel development environment. As long as you are a Mac user, even if you don’t know Docker, you can use it to create Laravel projects and develop them. Due to the newly added .env function When it comes to functions, those who are in a hurry push, but there is no complete test, and a bunch of new bugs are created. Therefore, this time, a new dlaravel_test, a bash testing tool, is added to run the test through docker in docker. Make sure that every release of D-Laravel can be a stable version.