diff --git a/docs/_settings/config.toml b/docs/_settings/config.toml
index 390bcc4c..168d1a74 100644
--- a/docs/_settings/config.toml
+++ b/docs/_settings/config.toml
@@ -32,8 +32,8 @@ googleAnalytics = ""
highlight_css = ""
[params.palette]
- primary = "red"
- accent = "teal"
+ primary = "purple"
+ accent = "deep-purple"
[params.font]
text = "Ubuntu"
@@ -88,3 +88,4 @@ googleAnalytics = ""
fractions = true
smartDashes = true
plainIDAnchors = true
+
diff --git a/docs/_settings/content/contributing/index.md b/docs/_settings/content/contributing/index.md
index eba88237..7e8c8df2 100644
--- a/docs/_settings/content/contributing/index.md
+++ b/docs/_settings/content/contributing/index.md
@@ -62,7 +62,7 @@ Laradock uses [Hugo](https://gohugo.io/) as website generator tool, with the [Ma
* Edit the files you want to update.
* **Note:** If you want to edit the base image of the `Workspace` or the `php-fpm` Containers,
-you need to edit their Dockerfiles from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.
+you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.
* Make sure to update the `Readme` in case you made any changes.
diff --git a/docs/_settings/content/documentation/index.md b/docs/_settings/content/documentation/index.md
index 46d220c6..3494b1a1 100644
--- a/docs/_settings/content/documentation/index.md
+++ b/docs/_settings/content/documentation/index.md
@@ -5,17 +5,6 @@ weight: 3
---
-
-
-
-
-
-
-
-
-
-
-
## List current running Containers
```bash
@@ -352,6 +341,7 @@ Note: If `./xdebugPhpFpm` doesn't execute and gives `Permission Denied` error th
+
## Install Deployer (Deployment tool for PHP)
@@ -376,7 +366,7 @@ It should be like this:
4 - Re-build the containers `docker-compose build workspace`
-#### [Deployer Documentation Here](https://deployer.org/docs)
+[**Deployer Documentation Here**](https://deployer.org/docs)
@@ -542,6 +532,10 @@ b) add a new service container by simply copy-paste this section below PHP-FPM c
docker-compose up -d php-worker
```
+
+
+
+
## Use Redis
@@ -1249,7 +1243,7 @@ It should be like this:
4 - Re-build the containers `docker-compose build workspace`
-#### [Laravel Envoy Documentation Here](https://laravel.com/docs/5.3/envoy)
+[**Laravel Envoy Documentation Here**](https://laravel.com/docs/5.3/envoy)
@@ -1262,8 +1256,7 @@ It should be like this:
## PHPStorm Debugging Guide
Remote debug Laravel web and phpunit tests.
-#### [Debugging Guide Here](https://github.com/laradock/laradock/blob/master/_guides/phpstorm.md)
-
+[**Debugging Guide Here**](https://github.com/laradock/laradock/blob/master/_guides/phpstorm.md)
@@ -1285,6 +1278,7 @@ Remote debug Laravel web and phpunit tests.
+
## Upgrading LaraDock
@@ -1303,6 +1297,9 @@ Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requ
+
+
+
## Improve speed on MacOS
@@ -1352,6 +1349,10 @@ docker-compose up -d nginx mysql
+
+
+
+
## Common Problems
@@ -1363,8 +1364,9 @@ docker-compose up -d nginx mysql
+
-### I see a blank (white) page instead of the Laravel 'Welcome' page!
+## I see a blank (white) page instead of the Laravel 'Welcome' page!
Run the following command from the Laravel root directory:
@@ -1377,7 +1379,7 @@ sudo chmod -R 777 storage bootstrap/cache
-### I see "Welcome to nginx" instead of the Laravel App!
+## I see "Welcome to nginx" instead of the Laravel App!
Use `http://127.0.0.1` instead of `http://localhost` in your browser.
@@ -1386,7 +1388,7 @@ Use `http://127.0.0.1` instead of `http://localhost` in your browser.
-### I see an error message containing `address already in use` or `port is already allocated`
+## I see an error message containing `address already in use` or `port is already allocated`
Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in `apache`/`httpd` service or other development tools you have installed.
@@ -1395,7 +1397,7 @@ Make sure the ports for the services that you are trying to run (22, 80, 443, 33
-### I get NGINX error 404 Not Found on Windows.
+## I get NGINX error 404 Not Found on Windows.
1. Go to docker Settings on your Windows machine.
2. Click on the `Shared Drives` tab and check the drive that contains your project files.
@@ -1405,16 +1407,19 @@ Make sure the ports for the services that you are trying to run (22, 80, 443, 33
+
-### The time in my services does not match the current time
+## The time in my services does not match the current time
1. Make sure you've [changed the timezone](#Change-the-timezone).
2. Stop and rebuild the containers (`docker-compose up -d --build `)
+
+
-### I get MySQL connection refused
+## I get MySQL connection refused
This error sometimes happens because your Laravel application isn't running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:
@@ -1423,9 +1428,3 @@ This error sometimes happens because your Laravel application isn't running on t
2. Change the `DB_HOST` variable on env with the IP that you received from previous step.
* Option B
1. Change the `DB_HOST` value to the same name as the MySQL docker container. The LaraDock docker-compose file currently has this as `mysql`
-
-
-
-
-
-
diff --git a/docs/_settings/content/getting-started/index.md b/docs/_settings/content/getting-started/index.md
index 5b8e23cd..858f95b9 100644
--- a/docs/_settings/content/getting-started/index.md
+++ b/docs/_settings/content/getting-started/index.md
@@ -4,8 +4,6 @@ type: index
weight: 2
---
-
-
## Requirements
- [Git](https://git-scm.com/downloads)
@@ -14,6 +12,9 @@ weight: 2
+
+
+
## Installation
Choose the setup the best suits your needs.
@@ -110,6 +111,9 @@ Do the same for each project `project2.conf`, `project3.conf`,...
+
+
+
## Usage
**Read Before starting:**
@@ -128,7 +132,6 @@ If you are using **Docker Toolbox** (VM), do one of the following:
1 - Run Containers: *(Make sure you are in the `laradock` folder before running the `docker-compose` commands).*
-
**Example:** Running NGINX and MySQL:
```bash
@@ -176,4 +179,3 @@ DB_HOST=mysql
**Debugging**: if you are facing any problem here check the [Debugging](#debugging) section.
If you need a special support. Contact me, more details in the [Help & Questions](#Help) section.
-
diff --git a/docs/_settings/content/help/index.md b/docs/_settings/content/help/index.md
index 9c31979d..db758fd0 100644
--- a/docs/_settings/content/help/index.md
+++ b/docs/_settings/content/help/index.md
@@ -7,4 +7,3 @@ weight: 5
Join the chat room on [Gitter](https://gitter.im/LaraDock/laradock) and get help and support from the community.
You can as well can open an [issue](https://github.com/laradock/laradock/issues) on Github (will be labeled as Question) and discuss it with people on [Gitter](https://gitter.im/LaraDock/laradock).
-
diff --git a/docs/_settings/content/index.md b/docs/_settings/content/index.md
index f6c636f0..bb561f0a 100644
--- a/docs/_settings/content/index.md
+++ b/docs/_settings/content/index.md
@@ -106,9 +106,6 @@ What's better than a **Demo Video**:
- LaraDock [v0.1](https://www.youtube.com/watch?v=3YQsHe6oF80)
-### Laradock v4 Video
-
-{{< youtube TQii1jDa96Y >}}
@@ -136,6 +133,7 @@ What's better than a **Demo Video**:
+
## Supported Software (Containers)
@@ -190,7 +188,6 @@ What's better than a **Demo Video**:
-
## Chat with us
diff --git a/docs/_settings/content/related-projects/index.md b/docs/_settings/content/related-projects/index.md
index e0327a2c..f4b4a42c 100644
--- a/docs/_settings/content/related-projects/index.md
+++ b/docs/_settings/content/related-projects/index.md
@@ -4,7 +4,6 @@ type: index
weight: 4
---
-
LaraDock related projects:
* [LaraDock CLI](https://github.com/lorinlee/laradock-cli) by [LorinLee](https://github.com/lorinlee)
@@ -17,4 +16,3 @@ These Docker Compose projects have piqued our interest:
* [NoDock](https://github.com/Osedea/nodock) by [Osedea](https://github.com/Osedea)
If you want your project listed here, please open an issue.
-
diff --git a/docs/contributing/index.html b/docs/contributing/index.html
index 8995f990..6385d52d 100644
--- a/docs/contributing/index.html
+++ b/docs/contributing/index.html
@@ -71,7 +71,7 @@
-
+
@@ -394,7 +394,7 @@ submitting an Issue. E
Edit the files you want to update.
Note: If you want to edit the base image of the Workspace
or the php-fpm
Containers,
-you need to edit their Dockerfiles from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.
+you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.
Make sure to update the Readme
in case you made any changes.
diff --git a/docs/contributing/index.xml b/docs/contributing/index.xml
index 2338c790..e3923ac2 100644
--- a/docs/contributing/index.xml
+++ b/docs/contributing/index.xml
@@ -74,7 +74,7 @@ submitting an <a href="https://github.com/laradock/laradock/issues"&g
<li><p>Edit the files you want to update.</p></li>
<li><p><strong>Note:</strong> If you want to edit the base image of the <code>Workspace</code> or the <code>php-fpm</code> Containers,
-you need to edit their Dockerfiles from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.</p></li>
+you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.</p></li>
<li><p>Make sure to update the <code>Readme</code> in case you made any changes.</p></li>
</ul>
diff --git a/docs/documentation/index.html b/docs/documentation/index.html
index 49ad8068..1afc074f 100644
--- a/docs/documentation/index.html
+++ b/docs/documentation/index.html
@@ -71,7 +71,7 @@
-
+
@@ -336,8 +336,6 @@
-
-
List current running Containers
@@ -636,7 +634,7 @@ xdebug.remote_connect_back=1
4 - Re-build the containers docker-compose build workspace
-
+Deployer Documentation Here
@@ -1345,7 +1343,7 @@ e) set it to true
4 - Re-build the containers docker-compose build workspace
-
+Laravel Envoy Documentation Here
@@ -1354,7 +1352,7 @@ e) set it to true
Remote debug Laravel web and phpunit tests.
-
+Debugging Guide Here
@@ -1440,7 +1438,7 @@ e) set it to true
-I see a blank (white) page instead of the Laravel ‘Welcome’ page!
+I see a blank (white) page instead of the Laravel ‘Welcome’ page!
Run the following command from the Laravel root directory:
@@ -1449,19 +1447,19 @@ e) set it to true
-I see “Welcome to nginx” instead of the Laravel App!
+I see “Welcome to nginx” instead of the Laravel App!
Use http://127.0.0.1
instead of http://localhost
in your browser.
-I see an error message containing address already in use
or port is already allocated
+I see an error message containing address already in use
or port is already allocated
Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in apache
/httpd
service or other development tools you have installed.
-I get NGINX error 404 Not Found on Windows.
+I get NGINX error 404 Not Found on Windows.
- Go to docker Settings on your Windows machine.
@@ -1472,7 +1470,7 @@ e) set it to true
-The time in my services does not match the current time
+The time in my services does not match the current time
- Make sure you’ve changed the timezone.
@@ -1481,7 +1479,7 @@ e) set it to true
-I get MySQL connection refused
+I get MySQL connection refused
This error sometimes happens because your Laravel application isn’t running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:
diff --git a/docs/documentation/index.xml b/docs/documentation/index.xml
index 1719276f..82df15f1 100644
--- a/docs/documentation/index.xml
+++ b/docs/documentation/index.xml
@@ -16,8 +16,6 @@
http://laradock.io/documentation/
-<p><a name="Docker"></a></p>
-
<p><a name="List-current-running-Containers"></a></p>
<h2 id="list-current-running-containers">List current running Containers</h2>
@@ -316,7 +314,7 @@ xdebug.remote_connect_back=1
<p>4 - Re-build the containers <code>docker-compose build workspace</code></p>
-<h4 id="deployer-documentation-here-https-deployer-org-docs"><a href="https://deployer.org/docs">Deployer Documentation Here</a></h4>
+<p><a href="https://deployer.org/docs"><strong>Deployer Documentation Here</strong></a></p>
<p><br>
<a name="Production"></a></p>
@@ -1025,7 +1023,7 @@ e) set it to <code>true</code></p>
<p>4 - Re-build the containers <code>docker-compose build workspace</code></p>
-<h4 id="laravel-envoy-documentation-here-https-laravel-com-docs-5-3-envoy"><a href="https://laravel.com/docs/5.3/envoy">Laravel Envoy Documentation Here</a></h4>
+<p><a href="https://laravel.com/docs/5.3/envoy"><strong>Laravel Envoy Documentation Here</strong></a></p>
<p><br>
<a name="phpstorm-debugging"></a></p>
@@ -1034,7 +1032,7 @@ e) set it to <code>true</code></p>
<p>Remote debug Laravel web and phpunit tests.</p>
-<h4 id="debugging-guide-here-https-github-com-laradock-laradock-blob-master-guides-phpstorm-md"><a href="https://github.com/laradock/laradock/blob/master/_guides/phpstorm.md">Debugging Guide Here</a></h4>
+<p><a href="https://github.com/laradock/laradock/blob/master/_guides/phpstorm.md"><strong>Debugging Guide Here</strong></a></p>
<p><br>
<a name="keep-tracking-LaraDock"></a></p>
@@ -1120,7 +1118,7 @@ e) set it to <code>true</code></p>
<p><br></p>
-<h3 id="i-see-a-blank-white-page-instead-of-the-laravel-welcome-page">I see a blank (white) page instead of the Laravel ‘Welcome’ page!</h3>
+<h2 id="i-see-a-blank-white-page-instead-of-the-laravel-welcome-page">I see a blank (white) page instead of the Laravel ‘Welcome’ page!</h2>
<p>Run the following command from the Laravel root directory:</p>
@@ -1129,19 +1127,19 @@ e) set it to <code>true</code></p>
<p><br></p>
-<h3 id="i-see-welcome-to-nginx-instead-of-the-laravel-app">I see “Welcome to nginx” instead of the Laravel App!</h3>
+<h2 id="i-see-welcome-to-nginx-instead-of-the-laravel-app">I see “Welcome to nginx” instead of the Laravel App!</h2>
<p>Use <code>http://127.0.0.1</code> instead of <code>http://localhost</code> in your browser.</p>
<p><br></p>
-<h3 id="i-see-an-error-message-containing-address-already-in-use-or-port-is-already-allocated">I see an error message containing <code>address already in use</code> or <code>port is already allocated</code></h3>
+<h2 id="i-see-an-error-message-containing-address-already-in-use-or-port-is-already-allocated">I see an error message containing <code>address already in use</code> or <code>port is already allocated</code></h2>
<p>Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in <code>apache</code>/<code>httpd</code> service or other development tools you have installed.</p>
<p><br></p>
-<h3 id="i-get-nginx-error-404-not-found-on-windows">I get NGINX error 404 Not Found on Windows.</h3>
+<h2 id="i-get-nginx-error-404-not-found-on-windows">I get NGINX error 404 Not Found on Windows.</h2>
<ol>
<li>Go to docker Settings on your Windows machine.</li>
@@ -1152,7 +1150,7 @@ e) set it to <code>true</code></p>
<p><br></p>
-<h3 id="the-time-in-my-services-does-not-match-the-current-time">The time in my services does not match the current time</h3>
+<h2 id="the-time-in-my-services-does-not-match-the-current-time">The time in my services does not match the current time</h2>
<ol>
<li>Make sure you’ve <a href="#Change-the-timezone">changed the timezone</a>.</li>
@@ -1161,7 +1159,7 @@ e) set it to <code>true</code></p>
<p><br></p>
-<h3 id="i-get-mysql-connection-refused">I get MySQL connection refused</h3>
+<h2 id="i-get-mysql-connection-refused">I get MySQL connection refused</h2>
<p>This error sometimes happens because your Laravel application isn’t running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:</p>
diff --git a/docs/getting-started/index.html b/docs/getting-started/index.html
index 105285ff..84733947 100644
--- a/docs/getting-started/index.html
+++ b/docs/getting-started/index.html
@@ -71,7 +71,7 @@
-
+
diff --git a/docs/help/index.html b/docs/help/index.html
index 0c48a784..07d419a0 100644
--- a/docs/help/index.html
+++ b/docs/help/index.html
@@ -71,7 +71,7 @@
-
+
diff --git a/docs/index.html b/docs/index.html
index 581e8efe..6973c7d9 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -74,7 +74,7 @@
-
+
@@ -421,14 +421,6 @@ QUEUE_HOST=beanstalkd
- LaraDock v0.1
-Laradock v4 Video
-
-
-
-
-
-
-
Features
@@ -698,8 +690,6 @@ QUEUE_HOST=beanstalkd
-
-
List current running Containers
@@ -998,7 +988,7 @@ xdebug.remote_connect_back=1
4 - Re-build the containers docker-compose build workspace
-
+Deployer Documentation Here
@@ -1707,7 +1697,7 @@ e) set it to true
4 - Re-build the containers docker-compose build workspace
-
+Laravel Envoy Documentation Here
@@ -1716,7 +1706,7 @@ e) set it to true
Remote debug Laravel web and phpunit tests.
-
+Debugging Guide Here
@@ -1802,7 +1792,7 @@ e) set it to true
-I see a blank (white) page instead of the Laravel ‘Welcome’ page!
+I see a blank (white) page instead of the Laravel ‘Welcome’ page!
Run the following command from the Laravel root directory:
@@ -1811,19 +1801,19 @@ e) set it to true
-I see “Welcome to nginx” instead of the Laravel App!
+I see “Welcome to nginx” instead of the Laravel App!
Use http://127.0.0.1
instead of http://localhost
in your browser.
-I see an error message containing address already in use
or port is already allocated
+I see an error message containing address already in use
or port is already allocated
Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in apache
/httpd
service or other development tools you have installed.
-I get NGINX error 404 Not Found on Windows.
+I get NGINX error 404 Not Found on Windows.
- Go to docker Settings on your Windows machine.
@@ -1834,7 +1824,7 @@ e) set it to true
-The time in my services does not match the current time
+The time in my services does not match the current time
- Make sure you’ve changed the timezone.
@@ -1843,7 +1833,7 @@ e) set it to true
-I get MySQL connection refused
+I get MySQL connection refused
This error sometimes happens because your Laravel application isn’t running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:
@@ -1949,7 +1939,7 @@ submitting an Issue. E
Edit the files you want to update.
Note: If you want to edit the base image of the Workspace
or the php-fpm
Containers,
-you need to edit their Dockerfiles from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.
+you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.
Make sure to update the Readme
in case you made any changes.
diff --git a/docs/index.xml b/docs/index.xml
index 2dd65d92..51d87b3f 100644
--- a/docs/index.xml
+++ b/docs/index.xml
@@ -97,14 +97,6 @@ QUEUE_HOST=beanstalkd
<li>LaraDock <a href="https://www.youtube.com/watch?v=3YQsHe6oF80">v0.1</a></li>
</ul>
-<h3 id="laradock-v4-video">Laradock v4 Video</h3>
-
-
-<div style="position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden;">
- <iframe src="//www.youtube.com/embed/TQii1jDa96Y" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" allowfullscreen frameborder="0"></iframe>
- </div>
-
-
<p><a name="features"></a></p>
<h2 id="features">Features</h2>
@@ -384,8 +376,6 @@ QUEUE_HOST=beanstalkd
http://laradock.io/documentation/
-<p><a name="Docker"></a></p>
-
<p><a name="List-current-running-Containers"></a></p>
<h2 id="list-current-running-containers">List current running Containers</h2>
@@ -684,7 +674,7 @@ xdebug.remote_connect_back=1
<p>4 - Re-build the containers <code>docker-compose build workspace</code></p>
-<h4 id="deployer-documentation-here-https-deployer-org-docs"><a href="https://deployer.org/docs">Deployer Documentation Here</a></h4>
+<p><a href="https://deployer.org/docs"><strong>Deployer Documentation Here</strong></a></p>
<p><br>
<a name="Production"></a></p>
@@ -1393,7 +1383,7 @@ e) set it to <code>true</code></p>
<p>4 - Re-build the containers <code>docker-compose build workspace</code></p>
-<h4 id="laravel-envoy-documentation-here-https-laravel-com-docs-5-3-envoy"><a href="https://laravel.com/docs/5.3/envoy">Laravel Envoy Documentation Here</a></h4>
+<p><a href="https://laravel.com/docs/5.3/envoy"><strong>Laravel Envoy Documentation Here</strong></a></p>
<p><br>
<a name="phpstorm-debugging"></a></p>
@@ -1402,7 +1392,7 @@ e) set it to <code>true</code></p>
<p>Remote debug Laravel web and phpunit tests.</p>
-<h4 id="debugging-guide-here-https-github-com-laradock-laradock-blob-master-guides-phpstorm-md"><a href="https://github.com/laradock/laradock/blob/master/_guides/phpstorm.md">Debugging Guide Here</a></h4>
+<p><a href="https://github.com/laradock/laradock/blob/master/_guides/phpstorm.md"><strong>Debugging Guide Here</strong></a></p>
<p><br>
<a name="keep-tracking-LaraDock"></a></p>
@@ -1488,7 +1478,7 @@ e) set it to <code>true</code></p>
<p><br></p>
-<h3 id="i-see-a-blank-white-page-instead-of-the-laravel-welcome-page">I see a blank (white) page instead of the Laravel ‘Welcome’ page!</h3>
+<h2 id="i-see-a-blank-white-page-instead-of-the-laravel-welcome-page">I see a blank (white) page instead of the Laravel ‘Welcome’ page!</h2>
<p>Run the following command from the Laravel root directory:</p>
@@ -1497,19 +1487,19 @@ e) set it to <code>true</code></p>
<p><br></p>
-<h3 id="i-see-welcome-to-nginx-instead-of-the-laravel-app">I see “Welcome to nginx” instead of the Laravel App!</h3>
+<h2 id="i-see-welcome-to-nginx-instead-of-the-laravel-app">I see “Welcome to nginx” instead of the Laravel App!</h2>
<p>Use <code>http://127.0.0.1</code> instead of <code>http://localhost</code> in your browser.</p>
<p><br></p>
-<h3 id="i-see-an-error-message-containing-address-already-in-use-or-port-is-already-allocated">I see an error message containing <code>address already in use</code> or <code>port is already allocated</code></h3>
+<h2 id="i-see-an-error-message-containing-address-already-in-use-or-port-is-already-allocated">I see an error message containing <code>address already in use</code> or <code>port is already allocated</code></h2>
<p>Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in <code>apache</code>/<code>httpd</code> service or other development tools you have installed.</p>
<p><br></p>
-<h3 id="i-get-nginx-error-404-not-found-on-windows">I get NGINX error 404 Not Found on Windows.</h3>
+<h2 id="i-get-nginx-error-404-not-found-on-windows">I get NGINX error 404 Not Found on Windows.</h2>
<ol>
<li>Go to docker Settings on your Windows machine.</li>
@@ -1520,7 +1510,7 @@ e) set it to <code>true</code></p>
<p><br></p>
-<h3 id="the-time-in-my-services-does-not-match-the-current-time">The time in my services does not match the current time</h3>
+<h2 id="the-time-in-my-services-does-not-match-the-current-time">The time in my services does not match the current time</h2>
<ol>
<li>Make sure you’ve <a href="#Change-the-timezone">changed the timezone</a>.</li>
@@ -1529,7 +1519,7 @@ e) set it to <code>true</code></p>
<p><br></p>
-<h3 id="i-get-mysql-connection-refused">I get MySQL connection refused</h3>
+<h2 id="i-get-mysql-connection-refused">I get MySQL connection refused</h2>
<p>This error sometimes happens because your Laravel application isn’t running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:</p>
@@ -1650,7 +1640,7 @@ submitting an <a href="https://github.com/laradock/laradock/issues"&g
<li><p>Edit the files you want to update.</p></li>
<li><p><strong>Note:</strong> If you want to edit the base image of the <code>Workspace</code> or the <code>php-fpm</code> Containers,
-you need to edit their Dockerfiles from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.</p></li>
+you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.</p></li>
<li><p>Make sure to update the <code>Readme</code> in case you made any changes.</p></li>
</ul>
diff --git a/docs/license/index.html b/docs/license/index.html
index b66a7fde..edb58ca6 100644
--- a/docs/license/index.html
+++ b/docs/license/index.html
@@ -71,7 +71,7 @@
-
+
diff --git a/docs/related-projects/index.html b/docs/related-projects/index.html
index fe162bb7..2877adec 100644
--- a/docs/related-projects/index.html
+++ b/docs/related-projects/index.html
@@ -71,7 +71,7 @@
-
+