You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> We recommand using `composer create-project` instead of the Laravel installer, to install Laravel.
502
+
> We recommend using `composer create-project` instead of the Laravel installer, to install Laravel.
496
503
497
504
For more about the Laravel installation click [here](https://laravel.com/docs/master#installing-laravel).
498
505
@@ -701,6 +708,26 @@ More details about this [here](https://github.com/jenssegers/laravel-mongodb#ins
701
708
702
709
703
710
711
+
<br>
712
+
<a name="Use-phpMyAdmin"></a>
713
+
### Use phpMyAdmin
714
+
715
+
1 - Run the phpMyAdmin Container (`phpmyadmin`) with the `docker-compose up` command. Example:
716
+
717
+
```bash
718
+
# use with mysql
719
+
docker-compose up -d mysql phpmyadmin
720
+
721
+
# use with mariadb
722
+
docker-compose up -d mariadb phpmyadmin
723
+
```
724
+
725
+
2 - Open your browser and visit the localhost on port **8080**: `http://localhost:8080`
726
+
727
+
728
+
729
+
730
+
704
731
<br>
705
732
<a name="PHP"></a>
706
733
@@ -867,13 +894,6 @@ To controll the behavior of xDebug (in the `php-fpm` Container), you can run the
867
894
868
895
869
896
870
-
871
-
872
-
873
-
874
-
875
-
876
-
877
897
<br>
878
898
<a name="Misc"></a>
879
899
@@ -983,6 +1003,8 @@ It should be like this:
983
1003
984
1004
*Here's a list of the common problems you might face, and the possible solutions.*
985
1005
1006
+
1007
+
986
1008
#### I see a blank (white) page instead of the Laravel 'Welcome' page!
987
1009
988
1010
Run the following command from the Laravel root directory:
@@ -991,16 +1013,27 @@ Run the following command from the Laravel root directory:
991
1013
sudo chmod -R 777 storage bootstrap/cache
992
1014
```
993
1015
1016
+
994
1017
#### I see "Welcome to nginx" instead of the Laravel App!
995
1018
996
1019
Use `http://127.0.0.1` instead of `http://localhost` in your browser.
997
1020
1021
+
1022
+
998
1023
#### I see an error message containing `address already in use`
999
1024
1000
1025
Make sure the ports for the services that you are trying to run (80, 3306, etc.) are not being used already by other programs, such as a built in `apache`/`httpd` service or other development tools you have installed.
1001
1026
1002
1027
1003
1028
1029
+
#### I get Nginx error 404 Not Found on Windows.
1030
+
1031
+
1. Go to docker Settings on your Windows machine.
1032
+
2. Click on the `Shared Drives` tab and check the drive that contains your project files.
1033
+
3. Enter your windows username and password.
1034
+
4. Go to the `reset` tab and click restart docker.
1035
+
1036
+
1004
1037
1005
1038
1006
1039
@@ -1031,7 +1064,7 @@ Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requ
1031
1064
1032
1065
This little project was built by one man who has a full time job and many responsibilities, so if you like this project and you find that it needs a bug fix or support for new software or upgrade any container, or anything else.. Do not hesitate to contribute, you are more than welcome :)
0 commit comments