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
**Note**: `workspace` and `php-fpm` will run automatically in most of the cases, so no need to specify them in the `up` command.
@@ -702,6 +708,26 @@ More details about this [here](https://github.com/jenssegers/laravel-mongodb#ins
702
708
703
709
704
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
+
705
731
<br>
706
732
<a name="PHP"></a>
707
733
@@ -868,13 +894,6 @@ To controll the behavior of xDebug (in the `php-fpm` Container), you can run the
868
894
869
895
870
896
871
-
872
-
873
-
874
-
875
-
876
-
877
-
878
897
<br>
879
898
<a name="Misc"></a>
880
899
@@ -984,6 +1003,8 @@ It should be like this:
984
1003
985
1004
*Here's a list of the common problems you might face, and the possible solutions.*
986
1005
1006
+
1007
+
987
1008
#### I see a blank (white) page instead of the Laravel 'Welcome' page!
988
1009
989
1010
Run the following command from the Laravel root directory:
@@ -992,16 +1013,27 @@ Run the following command from the Laravel root directory:
992
1013
sudo chmod -R 777 storage bootstrap/cache
993
1014
```
994
1015
1016
+
995
1017
#### I see "Welcome to nginx" instead of the Laravel App!
996
1018
997
1019
Use `http://127.0.0.1` instead of `http://localhost` in your browser.
998
1020
1021
+
1022
+
999
1023
#### I see an error message containing `address already in use`
1000
1024
1001
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.
1002
1026
1003
1027
1004
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
+
1005
1037
1006
1038
1007
1039
@@ -1032,7 +1064,7 @@ Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requ
1032
1064
1033
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