Browse Source

add logo and update some texts

Mahmoud Zalt 8 years ago
parent
commit
4a88cbc17a
48 changed files with 428 additions and 653 deletions
  1. 1 1
      DOCUMENTATION/config.toml
  2. 59 101
      DOCUMENTATION/content/introduction/index.md
  3. 0 0
      DOCUMENTATION/static/.gitkeep
  4. BIN
      DOCUMENTATION/static/logo.png
  5. 0 0
      DOCUMENTATION/static/photos/KiTTY/Connection.png
  6. 0 0
      DOCUMENTATION/static/photos/KiTTY/ConnectionData.png
  7. 0 0
      DOCUMENTATION/static/photos/KiTTY/ConnectionSSH.png
  8. 0 0
      DOCUMENTATION/static/photos/KiTTY/ConnectionSSHAuth.png
  9. 0 0
      DOCUMENTATION/static/photos/KiTTY/Session.png
  10. 0 0
      DOCUMENTATION/static/photos/KiTTY/Terminal.png
  11. 0 0
      DOCUMENTATION/static/photos/KiTTY/TerminalKeyboard.png
  12. 0 0
      DOCUMENTATION/static/photos/KiTTY/TerminalShell.png
  13. 0 0
      DOCUMENTATION/static/photos/KiTTY/Window.png
  14. 0 0
      DOCUMENTATION/static/photos/KiTTY/WindowAppearance.png
  15. 0 0
      DOCUMENTATION/static/photos/PHPStorm/DebugRemoteOn.png
  16. 0 0
      DOCUMENTATION/static/photos/PHPStorm/RemoteDebuggingSuccess.png
  17. 0 0
      DOCUMENTATION/static/photos/PHPStorm/RemoteHost.png
  18. 0 0
      DOCUMENTATION/static/photos/PHPStorm/RemoteTestDebuggingSuccess.png
  19. 0 0
      DOCUMENTATION/static/photos/PHPStorm/RemoteWebDebuggingSuccess.png
  20. 0 0
      DOCUMENTATION/static/photos/PHPStorm/Settings/BuildDeploymentConnection.png
  21. 0 0
      DOCUMENTATION/static/photos/PHPStorm/Settings/BuildDeploymentConnectionMappings.png
  22. 0 0
      DOCUMENTATION/static/photos/PHPStorm/Settings/BuildDeploymentDebugger.png
  23. 0 0
      DOCUMENTATION/static/photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png
  24. 0 0
      DOCUMENTATION/static/photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png
  25. 0 0
      DOCUMENTATION/static/photos/PHPStorm/Settings/LangsPHPDebug.png
  26. 0 0
      DOCUMENTATION/static/photos/PHPStorm/Settings/LangsPHPInterpreters.png
  27. 0 0
      DOCUMENTATION/static/photos/PHPStorm/Settings/LangsPHPPHPUnit.png
  28. 0 0
      DOCUMENTATION/static/photos/PHPStorm/Settings/LangsPHPServers.png
  29. 0 0
      DOCUMENTATION/static/photos/PHPStorm/Settings/WindowsFirewallAllowedApps.png
  30. 0 0
      DOCUMENTATION/static/photos/PHPStorm/Settings/WindowsHyperVManager.png
  31. 0 0
      DOCUMENTATION/static/photos/PHPStorm/Settings/hosts.png
  32. 0 0
      DOCUMENTATION/static/photos/SimpleHostsEditor/AddHost_laravel.png
  33. 9 9
      DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html
  34. 12 1
      DOCUMENTATION/themes/hugo-material-docs/static/stylesheets/highlight/highlight.css
  35. 11 16
      README.md
  36. 0 0
      docs/.gitkeep
  37. 13 9
      docs/contributing/index.html
  38. 4 4
      docs/contributing/index.xml
  39. 9 5
      docs/documentation/index.html
  40. 9 5
      docs/getting-started/index.html
  41. 9 5
      docs/help/index.html
  42. 72 126
      docs/index.html
  43. 63 121
      docs/index.xml
  44. 68 122
      docs/introduction/index.html
  45. 59 117
      docs/introduction/index.xml
  46. 9 5
      docs/license/index.html
  47. 9 5
      docs/related-projects/index.html
  48. 12 1
      docs/stylesheets/highlight/highlight.css

+ 1 - 1
DOCUMENTATION/config.toml

@@ -19,7 +19,7 @@ googleAnalytics = "UA-37514928-9"
 	repo_url = ""
 
 	version = ""
-	logo = ""
+	logo = "logo.png"
 	favicon = ""
 
 	permalink = "#"

+ 59 - 101
DOCUMENTATION/content/introduction/index.md

@@ -4,14 +4,17 @@ type: index
 weight: 1
 ---
 
-Laradock strives to make the PHP development experience easier and faster.
 
-It contains pre-packaged Docker Images that provides you a wonderful *development* environment without requiring you to install PHP, NGINX, MySQL, Redis, and any other software on your machines.
 
-Laradock is configured to run Laravel Apps by default, and it can be modified to run all kinds of PHP Apps (Symfony, CodeIgniter, WordPress, Drupal...).
 
+A full PHP development environment for Docker.
 
+Includes pre-packaged Docker Images, all pre-configured to provide a wonderful PHP development environment.
 
+Laradock is well known in the Laravel community, as the project started with single focus on running Laravel projects on Docker. Later and due to the large adoption from the PHP community, it started supporting other PHP projects like Symfony, CodeIgniter, WordPress, Drupal...
+
+
+![](https://s19.postimg.org/jblfytw9f/laradock-logo.jpg)
 
 ## Quick Overview
 
@@ -52,49 +55,85 @@ That's it! enjoy :)
 
 
 
+<a name="features"></a>
+## Features
 
+- Easy switch between PHP versions: 7.0, 5.6, 5.5...
+- Choose your favorite database engine: MySQL, Postgres, MariaDB...
+- Run your own combination of software: Memcached, HHVM, Beanstalkd...
+- Every software runs on a separate container: PHP-FPM, NGINX, PHP-CLI...
+- Easy to customize any container, with simple edit to the `Dockerfile`.
+- All Images extends from an official base Image. (Trusted base Images).
+- Pre-configured NGINX for Laravel.
+- Easy to apply configurations inside containers.
+- Clean and well structured Dockerfiles (`Dockerfile`).
+- Latest version of the Docker Compose file (`docker-compose`).
+- Everything is visible and editable.
+- Fast Images Builds.
+- More to come every week..
 
 
-<a name="what-is-docker"></a>
-## What is Docker?
 
-[Docker](https://www.docker.com) is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of [operating-system-level virtualization](https://en.wikipedia.org/wiki/Operating-system-level_virtualization) on Linux, Mac OS and Windows.
 
+<a name="Supported-Containers"></a>
+## Supported Software (Images)
+
+In adhering to the separation of concerns principle as promoted by Docker, Laradock runs each software on its own Container.
+You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm.
 
+- **Database Engines:**
+MySQL - MariaDB - MongoDB - Neo4j - RethinkDB - PostgreSQL - Postgres Postgis.
+- **Cache Engines:**
+Redis - Memcached - Aerospike
+- **PHP Servers:**
+NGINX - Apache2 - Caddy
+- **PHP Compilers:**
+PHP FPM - HHVM
+- **Message Queuing:**
+Beanstalkd - Beanstalkd Console - RabbitMQ - RabbitMQ Console
+- **Tools:**
+PhpMyAdmin - Adminer - PgAdmin - ElasticSearch - Selenium - Certbot - Mailhog - Minio...
 
+Laradock introduces the **Workspace** Image, as a development environment.
+It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose.
 
+**Workspace Image Tools**
+PHP CLI - Composer - Git - Linuxbrew - Node - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn...
 
+You can choose, which tools to install in your workspace container and other containers, from the `.env` file.
 
-<a name="why-docker-not-vagrant"></a>
-## Why Docker not Vagrant!?
 
-[Vagrant](https://www.vagrantup.com) creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.
+> If you modify `docker-compose.yml`, `.env` or any `dockerfile` file, you must re-build your containers, to see those effects in the running instance.
 
-Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you **lightweight** Virtual Containers, that share the same kernel and allow to safely execute independent processes.
 
-In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.
 
-Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).
+If you can't find your Software in the list, build it yourself and sumit it. Contributions are welcomed :)
 
 
 
 
 
 
-<a name="laradock-vs-homestead"></a>
-## Laradock VS Homestead (For Laravel Developers)
+<a name="what-is-docker"></a>
+## What is Docker?
 
-> Laradock It's like Laravel Homestead but for Docker instead of Vagrant.
+[Docker](https://www.docker.com) is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of [operating-system-level virtualization](https://en.wikipedia.org/wiki/Operating-system-level_virtualization) on Linux, Mac OS and Windows.
 
-Laradock and [Homestead](https://laravel.com/docs/master/homestead) both give you complete virtual development environments. (Without the need to install and configure every single software on your own Operating System).
 
-- Homestead is a tool that controls Vagrant for you (using Homestead special commands). And Vagrant manages your Virtual Machine.
 
-- Laradock is a tool that controls Docker for you (using Docker & Docker Compose official commands). And Docker manages your Virtual Containers.
 
-Running a virtual container is much faster than running a full virtual Machine. Thus **Laradock is much faster than Homestead**.
 
 
+<a name="why-docker-not-vagrant"></a>
+## Why Docker not Vagrant!?
+
+[Vagrant](https://www.vagrantup.com) creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.
+
+Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you **lightweight** Virtual Containers, that share the same kernel and allow to safely execute independent processes.
+
+In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.
+
+Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).
 
 
 
@@ -106,6 +145,7 @@ Running a virtual container is much faster than running a full virtual Machine.
 
 What's better than a **Demo Video**:
 
+- Laradock v5.* (soon or never)
 - Laradock [v4.*](https://www.youtube.com/watch?v=TQii1jDa96Y)
 - Laradock [v2.*](https://www.youtube.com/watch?v=-DamFMczwDA)
 - Laradock [v0.3](https://www.youtube.com/watch?v=jGkyO6Is_aI)
@@ -117,88 +157,6 @@ What's better than a **Demo Video**:
 
 
 
-<a name="features"></a>
-## Features
-
-- Easy switch between PHP versions: 7.0, 5.6, 5.5...
-- Choose your favorite database engine: MySQL, Postgres, MariaDB...
-- Run your own combination of software: Memcached, HHVM, Beanstalkd...
-- Every software runs on a separate container: PHP-FPM, NGINX, PHP-CLI...
-- Easy to customize any container, with simple edit to the `Dockerfile`.
-- All Images extends from an official base Image. (Trusted base Images).
-- Pre-configured NGINX for Laravel.
-- Easy to apply configurations inside containers.
-- Clean and well structured Dockerfiles (`Dockerfile`).
-- Latest version of the Docker Compose file (`docker-compose`).
-- Everything is visible and editable.
-- Fast Images Builds.
-- More to come every week..
-
-
-
-
-
-
-
-<a name="Supported-Containers"></a>
-## Supported Software (Containers)
-
-- **Database Engines:**
-	- MySQL
-	- MariaDB
-	- MongoDB
-	- Neo4j
-	- RethinkDB
-	- PostgreSQL
-	- Postgres Postgis
-- **Cache Engines:**
-	- Redis
-	- Memcached
-	- Aerospike
-- **PHP Servers:**
-	- NGINX
-	- Apache2
-	- Caddy
-- **PHP Compilers:**
-	- PHP-FPM
-	- HHVM
-- **Message Queuing Systems:**
-	- Beanstalkd
-	- Beanstalkd Console
-	- RabbitMQ
-	- RabbitMQ Console
-- **Tools:**
-	- PhpMyAdmin
-  	- Adminer
-	- PgAdmin
-	- ElasticSearch
-	- Selenium
-	- Certbot
-	- Mailhog
-	- Minio
-	- Workspace
-		- PHP7-CLI
-		- Composer
-		- Git
-		- Linuxbrew
-		- Node
-		- Gulp
-		- SQLite
-		- xDebug
-		- Envoy
-		- Deployer
-		- Vim
-		- Yarn
-		- ... Many other supported tools are not documented. (Will be updated soon)
-
->If you can't find your Software, build it yourself and add it to this list. Contributions are welcomed :)
-
-
-
-
-
-
-
 <a name="Chat"></a>
 ## Chat with us
 

+ 0 - 0
DOCUMENTATION/static/.gitkeep


BIN
DOCUMENTATION/static/logo.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/KiTTY/Connection.png → DOCUMENTATION/static/photos/KiTTY/Connection.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/KiTTY/ConnectionData.png → DOCUMENTATION/static/photos/KiTTY/ConnectionData.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/KiTTY/ConnectionSSH.png → DOCUMENTATION/static/photos/KiTTY/ConnectionSSH.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/KiTTY/ConnectionSSHAuth.png → DOCUMENTATION/static/photos/KiTTY/ConnectionSSHAuth.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/KiTTY/Session.png → DOCUMENTATION/static/photos/KiTTY/Session.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/KiTTY/Terminal.png → DOCUMENTATION/static/photos/KiTTY/Terminal.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/KiTTY/TerminalKeyboard.png → DOCUMENTATION/static/photos/KiTTY/TerminalKeyboard.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/KiTTY/TerminalShell.png → DOCUMENTATION/static/photos/KiTTY/TerminalShell.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/KiTTY/Window.png → DOCUMENTATION/static/photos/KiTTY/Window.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/KiTTY/WindowAppearance.png → DOCUMENTATION/static/photos/KiTTY/WindowAppearance.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/DebugRemoteOn.png → DOCUMENTATION/static/photos/PHPStorm/DebugRemoteOn.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/RemoteDebuggingSuccess.png → DOCUMENTATION/static/photos/PHPStorm/RemoteDebuggingSuccess.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/RemoteHost.png → DOCUMENTATION/static/photos/PHPStorm/RemoteHost.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/RemoteTestDebuggingSuccess.png → DOCUMENTATION/static/photos/PHPStorm/RemoteTestDebuggingSuccess.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/RemoteWebDebuggingSuccess.png → DOCUMENTATION/static/photos/PHPStorm/RemoteWebDebuggingSuccess.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/Settings/BuildDeploymentConnection.png → DOCUMENTATION/static/photos/PHPStorm/Settings/BuildDeploymentConnection.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/Settings/BuildDeploymentConnectionMappings.png → DOCUMENTATION/static/photos/PHPStorm/Settings/BuildDeploymentConnectionMappings.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/Settings/BuildDeploymentDebugger.png → DOCUMENTATION/static/photos/PHPStorm/Settings/BuildDeploymentDebugger.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png → DOCUMENTATION/static/photos/PHPStorm/Settings/EditRunConfigurationRemoteExampleTestDebug.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png → DOCUMENTATION/static/photos/PHPStorm/Settings/EditRunConfigurationRemoteWebDebug.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/Settings/LangsPHPDebug.png → DOCUMENTATION/static/photos/PHPStorm/Settings/LangsPHPDebug.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/Settings/LangsPHPInterpreters.png → DOCUMENTATION/static/photos/PHPStorm/Settings/LangsPHPInterpreters.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/Settings/LangsPHPPHPUnit.png → DOCUMENTATION/static/photos/PHPStorm/Settings/LangsPHPPHPUnit.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/Settings/LangsPHPServers.png → DOCUMENTATION/static/photos/PHPStorm/Settings/LangsPHPServers.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/Settings/WindowsFirewallAllowedApps.png → DOCUMENTATION/static/photos/PHPStorm/Settings/WindowsFirewallAllowedApps.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/Settings/WindowsHyperVManager.png → DOCUMENTATION/static/photos/PHPStorm/Settings/WindowsHyperVManager.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/PHPStorm/Settings/hosts.png → DOCUMENTATION/static/photos/PHPStorm/Settings/hosts.png


+ 0 - 0
DOCUMENTATION/themes/hugo-material-docs/static/photos/SimpleHostsEditor/AddHost_laravel.png → DOCUMENTATION/static/photos/SimpleHostsEditor/AddHost_laravel.png


+ 9 - 9
DOCUMENTATION/themes/hugo-material-docs/layouts/partials/drawer.html

@@ -1,11 +1,11 @@
 <nav aria-label="Navigation">
-  <!--<a href="{{ with .Site.Params.repo_url }}{{ . }}{{ else }}{{ .Site.BaseURL }}{{ end }}" class="project">-->
-    <!--<div class="banner">-->
-      <!--{{ with .Site.Params.logo }}-->
-        <!--<div class="logo">-->
-          <!--<img src="{{ $.Site.BaseURL }}{{ . }}">-->
-        <!--</div>-->
-      <!--{{ end }}-->
+  <a href="{{ with .Site.Params.repo_url }}{{ . }}{{ else }}{{ .Site.BaseURL }}{{ end }}" class="project">
+    <div class="banner">
+      {{ with .Site.Params.logo }}
+        <div class="logo">
+          <img src="{{ $.Site.BaseURL }}{{ . }}">
+        </div>
+      {{ end }}
       <!--<div class="name">-->
         <!--<strong>{{ .Site.Title }} {{ with .Site.Params.version }}<span class="version">{{ . }}</span>{{ end }}</strong>-->
         <!--{{ with .Scratch.Get "repo_id" }}-->
@@ -13,8 +13,8 @@
           <!--{{ . }}-->
         <!--{{ end }}-->
       <!--</div>-->
-    <!--</div>-->
-  <!--</a>-->
+    </div>
+  </a>
 
   <div class="scrollable">
     <div class="wrapper">

+ 12 - 1
DOCUMENTATION/themes/hugo-material-docs/static/stylesheets/highlight/highlight.css

@@ -3,7 +3,7 @@
  * theme that is used as fallback in codeblocks 
  */
 .article pre code {
-	color: rgba(0, 0, 0, 0.8) !important;
+	color: rgba(0, 0, 0, 0.78) !important;
 }
 
 
@@ -103,3 +103,14 @@ font-style:italic;
 .hljs-strong {
 font-weight:700;
 }
+
+/*
+    OVERRIDING THE DEFAULT STYLES - By Mahmoud Zalt (mahmoud@zalt.me) for Laradock.io
+*/
+
+.project .logo img{
+    width: 140px;
+    height: 140px;
+    background: transparent;
+    border-radius: 0%;
+}

+ 11 - 16
README.md

@@ -1,10 +1,10 @@
-# Laradock
+![](https://s19.postimg.org/jblfytw9f/laradock-logo.jpg)
 
 > Use Docker first and learn about it later.
 
-[![forthebadge](http://forthebadge.com/images/badges/built-by-developers.svg)](http://zalt.me)
+A Docker PHP development environment that facilitates running **PHP** Apps on **Docker**.
 
-Laradock is a Docker PHP development environment that facilitates running **PHP** Apps on **Docker**.
+[![forthebadge](http://forthebadge.com/images/badges/built-by-developers.svg)](http://zalt.me)
 
 ## Documentation
 
@@ -12,20 +12,15 @@ Laradock is a Docker PHP development environment that facilitates running **PHP*
 
 ## Credits
 
-**Admins / Maintainers:**
-
-- [Mahmoud Zalt](https://github.com/Mahmoudz) (mahmoudz)  [ [Twitter](https://twitter.com/Mahmoud_Zalt) | [Personal Site](http://zalt.me) | [LinkedIn](https://www.linkedin.com/in/mahmoudzalt) ]
-- [Bo-Yi Wu](https://github.com/appleboy) (appleboy) [ [Twitter](https://twitter.com/appleboy) ]
-- [Philippe Trépanier](https://github.com/philtrep) (philtrep)
-- [Mike Erickson](https://github.com/mikeerickson) (mikeerickson)
-- [Dwi Fahni Denni](https://github.com/zeroc0d3) (zeroc0d3)
-- [Thor Erik](https://github.com/thorerik) (thorerik)
-- [Winfried van Loon](https://github.com/winfried-van-loon) (winfried-van-loon)
-- Contribute and join us!
-
-**Contributors:**
+**Maintainers:**
 
-- [Contributors](https://github.com/laradock/laradock/graphs/contributors)
+- [Mahmoud Zalt](https://github.com/Mahmoudz) @mahmoudz | [Twitter](https://twitter.com/Mahmoud_Zalt) | [Site](http://zalt.me)
+- [Bo-Yi Wu](https://github.com/appleboy) @appleboy | [Twitter](https://twitter.com/appleboy)
+- [Philippe Trépanier](https://github.com/philtrep) @philtrep
+- [Mike Erickson](https://github.com/mikeerickson) @mikeerickson
+- [Dwi Fahni Denni](https://github.com/zeroc0d3) @zeroc0d3
+- [Thor Erik](https://github.com/thorerik) @thorerik
+- [Winfried van Loon](https://github.com/winfried-van-loon) @winfried-van-loon
 
 ## License
 

+ 0 - 0
docs/.gitkeep


+ 13 - 9
docs/contributing/index.html

@@ -22,7 +22,7 @@
 
     <meta property="og:url" content="http://laradock.io/contributing/">
     <meta property="og:title" content="Laradock">
-    
+    <meta property="og:image" content="http://laradock.io/logo.png">
     <meta name="apple-mobile-web-app-title" content="Laradock">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
@@ -129,15 +129,19 @@
 <main class="main">
 	<div class="drawer">
 		<nav aria-label="Navigation">
-  
-    
+  <a href="http://laradock.io/" class="project">
+    <div class="banner">
+      
+        <div class="logo">
+          <img src="http://laradock.io/logo.png">
+        </div>
       
       
         
         
       
-    
-  
+    </div>
+  </a>
 
   <div class="scrollable">
     <div class="wrapper">
@@ -363,11 +367,11 @@ features, by not reporting duplicate issues.</em></p>
 
 <p>Laradock uses <a href="https://gohugo.io/">Hugo</a> as website generator tool, with the <a href="http://themes.gohugo.io/theme/material-docs/">Material Docs theme</a>. You might need to check their docs quickly.</p>
 
-<p>Go the <code>DOCUMENTATION/_settings/content</code> and search for the markdown file you want to edit</p>
+<p>Go the <code>DOCUMENTATION/content</code> and search for the markdown file you want to edit</p>
 
 <p>Note: Every folder represents a section in the sidebar &ldquo;Menu&rdquo;. And every page and sidebar has a <code>weight</code> number to show it&rsquo;s position in the site.</p>
 
-<p>To update the sidebar or add a new section to it, you can edit this <code>DOCUMENTATION/_settings/config.toml</code> toml file.</p>
+<p>To update the sidebar or add a new section to it, you can edit this <code>DOCUMENTATION/config.toml</code> toml file.</p>
 
 <blockquote>
 <p>The site will be auto-generated in the <code>docs/</code> folder by <a href="https://travis-ci.org/laradock/laradock/">Travis CI</a>.</p>
@@ -379,9 +383,9 @@ features, by not reporting duplicate issues.</em></p>
 
 <ol>
 <li>Install <a href="https://gohugo.io/">Hugo</a> on your machine.</li>
-<li>Edit the <code>DOCUMENTATION/_settings/content</code>.</li>
+<li>Edit the <code>DOCUMENTATION/content</code>.</li>
 <li>Delete the <code>/docs</code> folder from the root.</li>
-<li>After you finish the editing, go to <code>DOCUMENTATION/_settings/</code> and run the <code>hugo</code> command to generate the HTML docs (inside a new <code>/docs</code> folder).</li>
+<li>After you finish the editing, go to <code>DOCUMENTATION/</code> and run the <code>hugo</code> command to generate the HTML docs (inside a new <code>/docs</code> folder).</li>
 </ol>
 
 <h2 id="how-to-support-new-software-add-new-container">How to support new Software (Add new Container)</h2>

+ 4 - 4
docs/contributing/index.xml

@@ -48,11 +48,11 @@ features, by not reporting duplicate issues.&lt;/em&gt;&lt;/p&gt;
 
 &lt;p&gt;Laradock uses &lt;a href=&#34;https://gohugo.io/&#34;&gt;Hugo&lt;/a&gt; as website generator tool, with the &lt;a href=&#34;http://themes.gohugo.io/theme/material-docs/&#34;&gt;Material Docs theme&lt;/a&gt;. You might need to check their docs quickly.&lt;/p&gt;
 
-&lt;p&gt;Go the &lt;code&gt;DOCUMENTATION/_settings/content&lt;/code&gt; and search for the markdown file you want to edit&lt;/p&gt;
+&lt;p&gt;Go the &lt;code&gt;DOCUMENTATION/content&lt;/code&gt; and search for the markdown file you want to edit&lt;/p&gt;
 
 &lt;p&gt;Note: Every folder represents a section in the sidebar &amp;ldquo;Menu&amp;rdquo;. And every page and sidebar has a &lt;code&gt;weight&lt;/code&gt; number to show it&amp;rsquo;s position in the site.&lt;/p&gt;
 
-&lt;p&gt;To update the sidebar or add a new section to it, you can edit this &lt;code&gt;DOCUMENTATION/_settings/config.toml&lt;/code&gt; toml file.&lt;/p&gt;
+&lt;p&gt;To update the sidebar or add a new section to it, you can edit this &lt;code&gt;DOCUMENTATION/config.toml&lt;/code&gt; toml file.&lt;/p&gt;
 
 &lt;blockquote&gt;
 &lt;p&gt;The site will be auto-generated in the &lt;code&gt;docs/&lt;/code&gt; folder by &lt;a href=&#34;https://travis-ci.org/laradock/laradock/&#34;&gt;Travis CI&lt;/a&gt;.&lt;/p&gt;
@@ -64,9 +64,9 @@ features, by not reporting duplicate issues.&lt;/em&gt;&lt;/p&gt;
 
 &lt;ol&gt;
 &lt;li&gt;Install &lt;a href=&#34;https://gohugo.io/&#34;&gt;Hugo&lt;/a&gt; on your machine.&lt;/li&gt;
-&lt;li&gt;Edit the &lt;code&gt;DOCUMENTATION/_settings/content&lt;/code&gt;.&lt;/li&gt;
+&lt;li&gt;Edit the &lt;code&gt;DOCUMENTATION/content&lt;/code&gt;.&lt;/li&gt;
 &lt;li&gt;Delete the &lt;code&gt;/docs&lt;/code&gt; folder from the root.&lt;/li&gt;
-&lt;li&gt;After you finish the editing, go to &lt;code&gt;DOCUMENTATION/_settings/&lt;/code&gt; and run the &lt;code&gt;hugo&lt;/code&gt; command to generate the HTML docs (inside a new &lt;code&gt;/docs&lt;/code&gt; folder).&lt;/li&gt;
+&lt;li&gt;After you finish the editing, go to &lt;code&gt;DOCUMENTATION/&lt;/code&gt; and run the &lt;code&gt;hugo&lt;/code&gt; command to generate the HTML docs (inside a new &lt;code&gt;/docs&lt;/code&gt; folder).&lt;/li&gt;
 &lt;/ol&gt;
 
 &lt;h2 id=&#34;how-to-support-new-software-add-new-container&#34;&gt;How to support new Software (Add new Container)&lt;/h2&gt;

+ 9 - 5
docs/documentation/index.html

@@ -22,7 +22,7 @@
 
     <meta property="og:url" content="http://laradock.io/documentation/">
     <meta property="og:title" content="Laradock">
-    
+    <meta property="og:image" content="http://laradock.io/logo.png">
     <meta name="apple-mobile-web-app-title" content="Laradock">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
@@ -129,15 +129,19 @@
 <main class="main">
 	<div class="drawer">
 		<nav aria-label="Navigation">
-  
-    
+  <a href="http://laradock.io/" class="project">
+    <div class="banner">
+      
+        <div class="logo">
+          <img src="http://laradock.io/logo.png">
+        </div>
       
       
         
         
       
-    
-  
+    </div>
+  </a>
 
   <div class="scrollable">
     <div class="wrapper">

+ 9 - 5
docs/getting-started/index.html

@@ -22,7 +22,7 @@
 
     <meta property="og:url" content="http://laradock.io/getting-started/">
     <meta property="og:title" content="Laradock">
-    
+    <meta property="og:image" content="http://laradock.io/logo.png">
     <meta name="apple-mobile-web-app-title" content="Laradock">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
@@ -129,15 +129,19 @@
 <main class="main">
 	<div class="drawer">
 		<nav aria-label="Navigation">
-  
-    
+  <a href="http://laradock.io/" class="project">
+    <div class="banner">
+      
+        <div class="logo">
+          <img src="http://laradock.io/logo.png">
+        </div>
       
       
         
         
       
-    
-  
+    </div>
+  </a>
 
   <div class="scrollable">
     <div class="wrapper">

+ 9 - 5
docs/help/index.html

@@ -22,7 +22,7 @@
 
     <meta property="og:url" content="http://laradock.io/help/">
     <meta property="og:title" content="Laradock">
-    
+    <meta property="og:image" content="http://laradock.io/logo.png">
     <meta name="apple-mobile-web-app-title" content="Laradock">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
@@ -129,15 +129,19 @@
 <main class="main">
 	<div class="drawer">
 		<nav aria-label="Navigation">
-  
-    
+  <a href="http://laradock.io/" class="project">
+    <div class="banner">
+      
+        <div class="logo">
+          <img src="http://laradock.io/logo.png">
+        </div>
       
       
         
         
       
-    
-  
+    </div>
+  </a>
 
   <div class="scrollable">
     <div class="wrapper">

+ 72 - 126
docs/index.html

@@ -22,7 +22,7 @@
 
     <meta property="og:url" content="http://laradock.io/">
     <meta property="og:title" content="Laradock">
-    
+    <meta property="og:image" content="http://laradock.io/logo.png">
     <meta name="apple-mobile-web-app-title" content="Laradock">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
@@ -132,15 +132,19 @@
 <main class="main">
 	<div class="drawer">
 		<nav aria-label="Navigation">
-  
-    
+  <a href="http://laradock.io/" class="project">
+    <div class="banner">
+      
+        <div class="logo">
+          <img src="http://laradock.io/logo.png">
+        </div>
       
       
         
         
       
-    
-  
+    </div>
+  </a>
 
   <div class="scrollable">
     <div class="wrapper">
@@ -332,15 +336,17 @@
 
 				
 
-<p>Laradock strives to make the PHP development experience easier and faster.</p>
+<p>A full PHP development environment for Docker.</p>
+
+<p>Includes pre-packaged Docker Images, all pre-configured to provide a wonderful PHP development environment.</p>
 
-<p>It contains pre-packaged Docker Images that provides you a wonderful <em>development</em> environment without requiring you to install PHP, NGINX, MySQL, Redis, and any other software on your machines.</p>
+<p>Laradock is well known in the Laravel community, as the project started with single focus on running Laravel projects on Docker. Later and due to the large adoption from the PHP community, it started supporting other PHP projects like Symfony, CodeIgniter, WordPress, Drupal&hellip;</p>
 
-<p>Laradock is configured to run Laravel Apps by default, and it can be modified to run all kinds of PHP Apps (Symfony, CodeIgniter, WordPress, Drupal&hellip;).</p>
+<p><img src="https://s19.postimg.org/jblfytw9f/laradock-logo.jpg" alt="" /></p>
 
 <h2 id="quick-overview">Quick Overview</h2>
 
-<p>Let&rsquo;s see how easy it is to install <code>NGINX</code>, <code>PHP</code>, <code>Composer</code>, <code>MySQL</code>, <code>Redis</code> and <code>beanstalkd</code>:</p>
+<p>Let&rsquo;s see how easy it is to install <code>NGINX</code>, <code>PHP</code>, <code>Composer</code>, <code>MySQL</code>, <code>Redis</code> and <code>Beanstalkd</code>:</p>
 
 <p>1 - Clone Laradock inside your PHP project:</p>
 
@@ -369,55 +375,6 @@ QUEUE_HOST=beanstalkd
 <pre><code class="language-shell">That's it! enjoy :)
 </code></pre>
 
-<p><a name="what-is-docker"></a></p>
-
-<h2 id="what-is-docker">What is Docker?</h2>
-
-<p><a href="https://www.docker.com">Docker</a> is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of <a href="https://en.wikipedia.org/wiki/Operating-system-level_virtualization">operating-system-level virtualization</a> on Linux, Mac OS and Windows.</p>
-
-<p><a name="why-docker-not-vagrant"></a></p>
-
-<h2 id="why-docker-not-vagrant">Why Docker not Vagrant!?</h2>
-
-<p><a href="https://www.vagrantup.com">Vagrant</a> creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.</p>
-
-<p>Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you <strong>lightweight</strong> Virtual Containers, that share the same kernel and allow to safely execute independent processes.</p>
-
-<p>In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.</p>
-
-<p>Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).</p>
-
-<p><a name="laradock-vs-homestead"></a></p>
-
-<h2 id="laradock-vs-homestead-for-laravel-developers">Laradock VS Homestead (For Laravel Developers)</h2>
-
-<blockquote>
-<p>Laradock It&rsquo;s like Laravel Homestead but for Docker instead of Vagrant.</p>
-</blockquote>
-
-<p>Laradock and <a href="https://laravel.com/docs/master/homestead">Homestead</a> both give you complete virtual development environments. (Without the need to install and configure every single software on your own Operating System).</p>
-
-<ul>
-<li><p>Homestead is a tool that controls Vagrant for you (using Homestead special commands). And Vagrant manages your Virtual Machine.</p></li>
-
-<li><p>Laradock is a tool that controls Docker for you (using Docker &amp; Docker Compose official commands). And Docker manages your Virtual Containers.</p></li>
-</ul>
-
-<p>Running a virtual container is much faster than running a full virtual Machine. Thus <strong>Laradock is much faster than Homestead</strong>.</p>
-
-<p><a name="Demo"></a></p>
-
-<h2 id="demo-video">Demo Video</h2>
-
-<p>What&rsquo;s better than a <strong>Demo Video</strong>:</p>
-
-<ul>
-<li>Laradock <a href="https://www.youtube.com/watch?v=TQii1jDa96Y">v4.*</a></li>
-<li>Laradock <a href="https://www.youtube.com/watch?v=-DamFMczwDA">v2.*</a></li>
-<li>Laradock <a href="https://www.youtube.com/watch?v=jGkyO6Is_aI">v0.3</a></li>
-<li>Laradock <a href="https://www.youtube.com/watch?v=3YQsHe6oF80">v0.1</a></li>
-</ul>
-
 <p><a name="features"></a></p>
 
 <h2 id="features">Features</h2>
@@ -440,83 +397,72 @@ QUEUE_HOST=beanstalkd
 
 <p><a name="Supported-Containers"></a></p>
 
-<h2 id="supported-software-containers">Supported Software (Containers)</h2>
+<h2 id="supported-software-images">Supported Software (Images)</h2>
 
-<ul>
-<li><strong>Database Engines:</strong>
+<p>In adhering to the separation of concerns principle as promoted by Docker, Laradock runs each software on its own Container.
+You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm.</p>
 
 <ul>
-<li>MySQL</li>
-<li>MariaDB</li>
-<li>MongoDB</li>
-<li>Neo4j</li>
-<li>RethinkDB</li>
-<li>PostgreSQL</li>
-<li>Postgres Postgis</li>
-</ul></li>
+<li><strong>Database Engines:</strong>
+MySQL - MariaDB - MongoDB - Neo4j - RethinkDB - PostgreSQL - Postgres Postgis.</li>
 <li><strong>Cache Engines:</strong>
-
-<ul>
-<li>Redis</li>
-<li>Memcached</li>
-<li>Aerospike</li>
-</ul></li>
+Redis - Memcached - Aerospike</li>
 <li><strong>PHP Servers:</strong>
-
-<ul>
-<li>NGINX</li>
-<li>Apache2</li>
-<li>Caddy</li>
-</ul></li>
+NGINX - Apache2 - Caddy</li>
 <li><strong>PHP Compilers:</strong>
+PHP FPM - HHVM</li>
+<li><strong>Message Queuing:</strong>
+Beanstalkd - Beanstalkd Console - RabbitMQ - RabbitMQ Console</li>
+<li><strong>Tools:</strong>
+PhpMyAdmin - Adminer - PgAdmin - ElasticSearch - Selenium - Certbot - Mailhog - Minio&hellip;</li>
+</ul>
 
-<ul>
-<li>PHP-FPM</li>
-<li>HHVM</li>
-</ul></li>
-<li><strong>Message Queuing Systems:</strong>
+<p>Laradock introduces the <strong>Workspace</strong> Image, as a development environment.
+It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose.</p>
 
-<ul>
-<li>Beanstalkd</li>
-<li>Beanstalkd Console</li>
-<li>RabbitMQ</li>
-<li>RabbitMQ Console</li>
-</ul></li>
-<li><strong>Tools:</strong>
+<p><strong>Workspace Image Tools</strong>
+PHP CLI - Composer - Git - Linuxbrew - Node - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn&hellip;</p>
 
-<ul>
-<li>PhpMyAdmin</li>
-<li>Adminer</li>
-<li>PgAdmin</li>
-<li>ElasticSearch</li>
-<li>Selenium</li>
-<li>Certbot</li>
-<li>Mailhog</li>
-<li>Minio</li>
-<li>Workspace
-
-<ul>
-<li>PHP7-CLI</li>
-<li>Composer</li>
-<li>Git</li>
-<li>Linuxbrew</li>
-<li>Node</li>
-<li>Gulp</li>
-<li>SQLite</li>
-<li>xDebug</li>
-<li>Envoy</li>
-<li>Deployer</li>
-<li>Vim</li>
-<li>Yarn</li>
-<li>&hellip; Many other supported tools are not documented. (Will be updated soon)</li>
-</ul></li>
-</ul></li>
-</ul>
+<p>You can choose, which tools to install in your workspace container and other containers, from the <code>.env</code> file.</p>
 
 <blockquote>
-<p>If you can&rsquo;t find your Software, build it yourself and add it to this list. Contributions are welcomed :)</p>
+<p>If you modify <code>docker-compose.yml</code>, <code>.env</code> or any <code>dockerfile</code> file, you must re-build your containers, to see those effects in the running instance.</p>
 </blockquote>
 
+<p>If you can&rsquo;t find your Software in the list, build it yourself and sumit it. Contributions are welcomed :)</p>
+
+<p><a name="what-is-docker"></a></p>
+
+<h2 id="what-is-docker">What is Docker?</h2>
+
+<p><a href="https://www.docker.com">Docker</a> is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of <a href="https://en.wikipedia.org/wiki/Operating-system-level_virtualization">operating-system-level virtualization</a> on Linux, Mac OS and Windows.</p>
+
+<p><a name="why-docker-not-vagrant"></a></p>
+
+<h2 id="why-docker-not-vagrant">Why Docker not Vagrant!?</h2>
+
+<p><a href="https://www.vagrantup.com">Vagrant</a> creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.</p>
+
+<p>Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you <strong>lightweight</strong> Virtual Containers, that share the same kernel and allow to safely execute independent processes.</p>
+
+<p>In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.</p>
+
+<p>Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).</p>
+
+<p><a name="Demo"></a></p>
+
+<h2 id="demo-video">Demo Video</h2>
+
+<p>What&rsquo;s better than a <strong>Demo Video</strong>:</p>
+
+<ul>
+<li>Laradock v5.* (soon or never)</li>
+<li>Laradock <a href="https://www.youtube.com/watch?v=TQii1jDa96Y">v4.*</a></li>
+<li>Laradock <a href="https://www.youtube.com/watch?v=-DamFMczwDA">v2.*</a></li>
+<li>Laradock <a href="https://www.youtube.com/watch?v=jGkyO6Is_aI">v0.3</a></li>
+<li>Laradock <a href="https://www.youtube.com/watch?v=3YQsHe6oF80">v0.1</a></li>
+</ul>
+
 <p><a name="Chat"></a></p>
 
 <h2 id="chat-with-us">Chat with us</h2>
@@ -2697,11 +2643,11 @@ features, by not reporting duplicate issues.</em></p>
 
 <p>Laradock uses <a href="https://gohugo.io/">Hugo</a> as website generator tool, with the <a href="http://themes.gohugo.io/theme/material-docs/">Material Docs theme</a>. You might need to check their docs quickly.</p>
 
-<p>Go the <code>DOCUMENTATION/_settings/content</code> and search for the markdown file you want to edit</p>
+<p>Go the <code>DOCUMENTATION/content</code> and search for the markdown file you want to edit</p>
 
 <p>Note: Every folder represents a section in the sidebar &ldquo;Menu&rdquo;. And every page and sidebar has a <code>weight</code> number to show it&rsquo;s position in the site.</p>
 
-<p>To update the sidebar or add a new section to it, you can edit this <code>DOCUMENTATION/_settings/config.toml</code> toml file.</p>
+<p>To update the sidebar or add a new section to it, you can edit this <code>DOCUMENTATION/config.toml</code> toml file.</p>
 
 <blockquote>
 <p>The site will be auto-generated in the <code>docs/</code> folder by <a href="https://travis-ci.org/laradock/laradock/">Travis CI</a>.</p>
@@ -2713,9 +2659,9 @@ features, by not reporting duplicate issues.</em></p>
 
 <ol>
 <li>Install <a href="https://gohugo.io/">Hugo</a> on your machine.</li>
-<li>Edit the <code>DOCUMENTATION/_settings/content</code>.</li>
+<li>Edit the <code>DOCUMENTATION/content</code>.</li>
 <li>Delete the <code>/docs</code> folder from the root.</li>
-<li>After you finish the editing, go to <code>DOCUMENTATION/_settings/</code> and run the <code>hugo</code> command to generate the HTML docs (inside a new <code>/docs</code> folder).</li>
+<li>After you finish the editing, go to <code>DOCUMENTATION/</code> and run the <code>hugo</code> command to generate the HTML docs (inside a new <code>/docs</code> folder).</li>
 </ol>
 
 <h2 id="how-to-support-new-software-add-new-container">How to support new Software (Add new Container)</h2>

+ 63 - 121
docs/index.xml

@@ -16,15 +16,17 @@
       <guid>http://laradock.io/introduction/</guid>
       <description>
 
-&lt;p&gt;Laradock strives to make the PHP development experience easier and faster.&lt;/p&gt;
+&lt;p&gt;A full PHP development environment for Docker.&lt;/p&gt;
 
-&lt;p&gt;It contains pre-packaged Docker Images that provides you a wonderful &lt;em&gt;development&lt;/em&gt; environment without requiring you to install PHP, NGINX, MySQL, Redis, and any other software on your machines.&lt;/p&gt;
+&lt;p&gt;Includes pre-packaged Docker Images, all pre-configured to provide a wonderful PHP development environment.&lt;/p&gt;
 
-&lt;p&gt;Laradock is configured to run Laravel Apps by default, and it can be modified to run all kinds of PHP Apps (Symfony, CodeIgniter, WordPress, Drupal&amp;hellip;).&lt;/p&gt;
+&lt;p&gt;Laradock is well known in the Laravel community, as the project started with single focus on running Laravel projects on Docker. Later and due to the large adoption from the PHP community, it started supporting other PHP projects like Symfony, CodeIgniter, WordPress, Drupal&amp;hellip;&lt;/p&gt;
+
+&lt;p&gt;&lt;img src=&#34;https://s19.postimg.org/jblfytw9f/laradock-logo.jpg&#34; alt=&#34;&#34; /&gt;&lt;/p&gt;
 
 &lt;h2 id=&#34;quick-overview&#34;&gt;Quick Overview&lt;/h2&gt;
 
-&lt;p&gt;Let&amp;rsquo;s see how easy it is to install &lt;code&gt;NGINX&lt;/code&gt;, &lt;code&gt;PHP&lt;/code&gt;, &lt;code&gt;Composer&lt;/code&gt;, &lt;code&gt;MySQL&lt;/code&gt;, &lt;code&gt;Redis&lt;/code&gt; and &lt;code&gt;beanstalkd&lt;/code&gt;:&lt;/p&gt;
+&lt;p&gt;Let&amp;rsquo;s see how easy it is to install &lt;code&gt;NGINX&lt;/code&gt;, &lt;code&gt;PHP&lt;/code&gt;, &lt;code&gt;Composer&lt;/code&gt;, &lt;code&gt;MySQL&lt;/code&gt;, &lt;code&gt;Redis&lt;/code&gt; and &lt;code&gt;Beanstalkd&lt;/code&gt;:&lt;/p&gt;
 
 &lt;p&gt;1 - Clone Laradock inside your PHP project:&lt;/p&gt;
 
@@ -53,55 +55,6 @@ QUEUE_HOST=beanstalkd
 &lt;pre&gt;&lt;code class=&#34;language-shell&#34;&gt;That&#39;s it! enjoy :)
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;&lt;a name=&#34;what-is-docker&#34;&gt;&lt;/a&gt;&lt;/p&gt;
-
-&lt;h2 id=&#34;what-is-docker&#34;&gt;What is Docker?&lt;/h2&gt;
-
-&lt;p&gt;&lt;a href=&#34;https://www.docker.com&#34;&gt;Docker&lt;/a&gt; is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of &lt;a href=&#34;https://en.wikipedia.org/wiki/Operating-system-level_virtualization&#34;&gt;operating-system-level virtualization&lt;/a&gt; on Linux, Mac OS and Windows.&lt;/p&gt;
-
-&lt;p&gt;&lt;a name=&#34;why-docker-not-vagrant&#34;&gt;&lt;/a&gt;&lt;/p&gt;
-
-&lt;h2 id=&#34;why-docker-not-vagrant&#34;&gt;Why Docker not Vagrant!?&lt;/h2&gt;
-
-&lt;p&gt;&lt;a href=&#34;https://www.vagrantup.com&#34;&gt;Vagrant&lt;/a&gt; creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.&lt;/p&gt;
-
-&lt;p&gt;Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you &lt;strong&gt;lightweight&lt;/strong&gt; Virtual Containers, that share the same kernel and allow to safely execute independent processes.&lt;/p&gt;
-
-&lt;p&gt;In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.&lt;/p&gt;
-
-&lt;p&gt;Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).&lt;/p&gt;
-
-&lt;p&gt;&lt;a name=&#34;laradock-vs-homestead&#34;&gt;&lt;/a&gt;&lt;/p&gt;
-
-&lt;h2 id=&#34;laradock-vs-homestead-for-laravel-developers&#34;&gt;Laradock VS Homestead (For Laravel Developers)&lt;/h2&gt;
-
-&lt;blockquote&gt;
-&lt;p&gt;Laradock It&amp;rsquo;s like Laravel Homestead but for Docker instead of Vagrant.&lt;/p&gt;
-&lt;/blockquote&gt;
-
-&lt;p&gt;Laradock and &lt;a href=&#34;https://laravel.com/docs/master/homestead&#34;&gt;Homestead&lt;/a&gt; both give you complete virtual development environments. (Without the need to install and configure every single software on your own Operating System).&lt;/p&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;p&gt;Homestead is a tool that controls Vagrant for you (using Homestead special commands). And Vagrant manages your Virtual Machine.&lt;/p&gt;&lt;/li&gt;
-
-&lt;li&gt;&lt;p&gt;Laradock is a tool that controls Docker for you (using Docker &amp;amp; Docker Compose official commands). And Docker manages your Virtual Containers.&lt;/p&gt;&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;p&gt;Running a virtual container is much faster than running a full virtual Machine. Thus &lt;strong&gt;Laradock is much faster than Homestead&lt;/strong&gt;.&lt;/p&gt;
-
-&lt;p&gt;&lt;a name=&#34;Demo&#34;&gt;&lt;/a&gt;&lt;/p&gt;
-
-&lt;h2 id=&#34;demo-video&#34;&gt;Demo Video&lt;/h2&gt;
-
-&lt;p&gt;What&amp;rsquo;s better than a &lt;strong&gt;Demo Video&lt;/strong&gt;:&lt;/p&gt;
-
-&lt;ul&gt;
-&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=TQii1jDa96Y&#34;&gt;v4.*&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=-DamFMczwDA&#34;&gt;v2.*&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=jGkyO6Is_aI&#34;&gt;v0.3&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=3YQsHe6oF80&#34;&gt;v0.1&lt;/a&gt;&lt;/li&gt;
-&lt;/ul&gt;
-
 &lt;p&gt;&lt;a name=&#34;features&#34;&gt;&lt;/a&gt;&lt;/p&gt;
 
 &lt;h2 id=&#34;features&#34;&gt;Features&lt;/h2&gt;
@@ -124,83 +77,72 @@ QUEUE_HOST=beanstalkd
 
 &lt;p&gt;&lt;a name=&#34;Supported-Containers&#34;&gt;&lt;/a&gt;&lt;/p&gt;
 
-&lt;h2 id=&#34;supported-software-containers&#34;&gt;Supported Software (Containers)&lt;/h2&gt;
+&lt;h2 id=&#34;supported-software-images&#34;&gt;Supported Software (Images)&lt;/h2&gt;
 
-&lt;ul&gt;
-&lt;li&gt;&lt;strong&gt;Database Engines:&lt;/strong&gt;
+&lt;p&gt;In adhering to the separation of concerns principle as promoted by Docker, Laradock runs each software on its own Container.
+You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm.&lt;/p&gt;
 
 &lt;ul&gt;
-&lt;li&gt;MySQL&lt;/li&gt;
-&lt;li&gt;MariaDB&lt;/li&gt;
-&lt;li&gt;MongoDB&lt;/li&gt;
-&lt;li&gt;Neo4j&lt;/li&gt;
-&lt;li&gt;RethinkDB&lt;/li&gt;
-&lt;li&gt;PostgreSQL&lt;/li&gt;
-&lt;li&gt;Postgres Postgis&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;Database Engines:&lt;/strong&gt;
+MySQL - MariaDB - MongoDB - Neo4j - RethinkDB - PostgreSQL - Postgres Postgis.&lt;/li&gt;
 &lt;li&gt;&lt;strong&gt;Cache Engines:&lt;/strong&gt;
-
-&lt;ul&gt;
-&lt;li&gt;Redis&lt;/li&gt;
-&lt;li&gt;Memcached&lt;/li&gt;
-&lt;li&gt;Aerospike&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
+Redis - Memcached - Aerospike&lt;/li&gt;
 &lt;li&gt;&lt;strong&gt;PHP Servers:&lt;/strong&gt;
-
-&lt;ul&gt;
-&lt;li&gt;NGINX&lt;/li&gt;
-&lt;li&gt;Apache2&lt;/li&gt;
-&lt;li&gt;Caddy&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
+NGINX - Apache2 - Caddy&lt;/li&gt;
 &lt;li&gt;&lt;strong&gt;PHP Compilers:&lt;/strong&gt;
+PHP FPM - HHVM&lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;Message Queuing:&lt;/strong&gt;
+Beanstalkd - Beanstalkd Console - RabbitMQ - RabbitMQ Console&lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;Tools:&lt;/strong&gt;
+PhpMyAdmin - Adminer - PgAdmin - ElasticSearch - Selenium - Certbot - Mailhog - Minio&amp;hellip;&lt;/li&gt;
+&lt;/ul&gt;
 
-&lt;ul&gt;
-&lt;li&gt;PHP-FPM&lt;/li&gt;
-&lt;li&gt;HHVM&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
-&lt;li&gt;&lt;strong&gt;Message Queuing Systems:&lt;/strong&gt;
+&lt;p&gt;Laradock introduces the &lt;strong&gt;Workspace&lt;/strong&gt; Image, as a development environment.
+It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose.&lt;/p&gt;
 
-&lt;ul&gt;
-&lt;li&gt;Beanstalkd&lt;/li&gt;
-&lt;li&gt;Beanstalkd Console&lt;/li&gt;
-&lt;li&gt;RabbitMQ&lt;/li&gt;
-&lt;li&gt;RabbitMQ Console&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
-&lt;li&gt;&lt;strong&gt;Tools:&lt;/strong&gt;
+&lt;p&gt;&lt;strong&gt;Workspace Image Tools&lt;/strong&gt;
+PHP CLI - Composer - Git - Linuxbrew - Node - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn&amp;hellip;&lt;/p&gt;
 
-&lt;ul&gt;
-&lt;li&gt;PhpMyAdmin&lt;/li&gt;
-&lt;li&gt;Adminer&lt;/li&gt;
-&lt;li&gt;PgAdmin&lt;/li&gt;
-&lt;li&gt;ElasticSearch&lt;/li&gt;
-&lt;li&gt;Selenium&lt;/li&gt;
-&lt;li&gt;Certbot&lt;/li&gt;
-&lt;li&gt;Mailhog&lt;/li&gt;
-&lt;li&gt;Minio&lt;/li&gt;
-&lt;li&gt;Workspace
-
-&lt;ul&gt;
-&lt;li&gt;PHP7-CLI&lt;/li&gt;
-&lt;li&gt;Composer&lt;/li&gt;
-&lt;li&gt;Git&lt;/li&gt;
-&lt;li&gt;Linuxbrew&lt;/li&gt;
-&lt;li&gt;Node&lt;/li&gt;
-&lt;li&gt;Gulp&lt;/li&gt;
-&lt;li&gt;SQLite&lt;/li&gt;
-&lt;li&gt;xDebug&lt;/li&gt;
-&lt;li&gt;Envoy&lt;/li&gt;
-&lt;li&gt;Deployer&lt;/li&gt;
-&lt;li&gt;Vim&lt;/li&gt;
-&lt;li&gt;Yarn&lt;/li&gt;
-&lt;li&gt;&amp;hellip; Many other supported tools are not documented. (Will be updated soon)&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
-&lt;/ul&gt;
+&lt;p&gt;You can choose, which tools to install in your workspace container and other containers, from the &lt;code&gt;.env&lt;/code&gt; file.&lt;/p&gt;
 
 &lt;blockquote&gt;
-&lt;p&gt;If you can&amp;rsquo;t find your Software, build it yourself and add it to this list. Contributions are welcomed :)&lt;/p&gt;
+&lt;p&gt;If you modify &lt;code&gt;docker-compose.yml&lt;/code&gt;, &lt;code&gt;.env&lt;/code&gt; or any &lt;code&gt;dockerfile&lt;/code&gt; file, you must re-build your containers, to see those effects in the running instance.&lt;/p&gt;
 &lt;/blockquote&gt;
 
+&lt;p&gt;If you can&amp;rsquo;t find your Software in the list, build it yourself and sumit it. Contributions are welcomed :)&lt;/p&gt;
+
+&lt;p&gt;&lt;a name=&#34;what-is-docker&#34;&gt;&lt;/a&gt;&lt;/p&gt;
+
+&lt;h2 id=&#34;what-is-docker&#34;&gt;What is Docker?&lt;/h2&gt;
+
+&lt;p&gt;&lt;a href=&#34;https://www.docker.com&#34;&gt;Docker&lt;/a&gt; is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of &lt;a href=&#34;https://en.wikipedia.org/wiki/Operating-system-level_virtualization&#34;&gt;operating-system-level virtualization&lt;/a&gt; on Linux, Mac OS and Windows.&lt;/p&gt;
+
+&lt;p&gt;&lt;a name=&#34;why-docker-not-vagrant&#34;&gt;&lt;/a&gt;&lt;/p&gt;
+
+&lt;h2 id=&#34;why-docker-not-vagrant&#34;&gt;Why Docker not Vagrant!?&lt;/h2&gt;
+
+&lt;p&gt;&lt;a href=&#34;https://www.vagrantup.com&#34;&gt;Vagrant&lt;/a&gt; creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.&lt;/p&gt;
+
+&lt;p&gt;Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you &lt;strong&gt;lightweight&lt;/strong&gt; Virtual Containers, that share the same kernel and allow to safely execute independent processes.&lt;/p&gt;
+
+&lt;p&gt;In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.&lt;/p&gt;
+
+&lt;p&gt;Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).&lt;/p&gt;
+
+&lt;p&gt;&lt;a name=&#34;Demo&#34;&gt;&lt;/a&gt;&lt;/p&gt;
+
+&lt;h2 id=&#34;demo-video&#34;&gt;Demo Video&lt;/h2&gt;
+
+&lt;p&gt;What&amp;rsquo;s better than a &lt;strong&gt;Demo Video&lt;/strong&gt;:&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;Laradock v5.* (soon or never)&lt;/li&gt;
+&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=TQii1jDa96Y&#34;&gt;v4.*&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=-DamFMczwDA&#34;&gt;v2.*&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=jGkyO6Is_aI&#34;&gt;v0.3&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=3YQsHe6oF80&#34;&gt;v0.1&lt;/a&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
 &lt;p&gt;&lt;a name=&#34;Chat&#34;&gt;&lt;/a&gt;&lt;/p&gt;
 
 &lt;h2 id=&#34;chat-with-us&#34;&gt;Chat with us&lt;/h2&gt;
@@ -2411,11 +2353,11 @@ features, by not reporting duplicate issues.&lt;/em&gt;&lt;/p&gt;
 
 &lt;p&gt;Laradock uses &lt;a href=&#34;https://gohugo.io/&#34;&gt;Hugo&lt;/a&gt; as website generator tool, with the &lt;a href=&#34;http://themes.gohugo.io/theme/material-docs/&#34;&gt;Material Docs theme&lt;/a&gt;. You might need to check their docs quickly.&lt;/p&gt;
 
-&lt;p&gt;Go the &lt;code&gt;DOCUMENTATION/_settings/content&lt;/code&gt; and search for the markdown file you want to edit&lt;/p&gt;
+&lt;p&gt;Go the &lt;code&gt;DOCUMENTATION/content&lt;/code&gt; and search for the markdown file you want to edit&lt;/p&gt;
 
 &lt;p&gt;Note: Every folder represents a section in the sidebar &amp;ldquo;Menu&amp;rdquo;. And every page and sidebar has a &lt;code&gt;weight&lt;/code&gt; number to show it&amp;rsquo;s position in the site.&lt;/p&gt;
 
-&lt;p&gt;To update the sidebar or add a new section to it, you can edit this &lt;code&gt;DOCUMENTATION/_settings/config.toml&lt;/code&gt; toml file.&lt;/p&gt;
+&lt;p&gt;To update the sidebar or add a new section to it, you can edit this &lt;code&gt;DOCUMENTATION/config.toml&lt;/code&gt; toml file.&lt;/p&gt;
 
 &lt;blockquote&gt;
 &lt;p&gt;The site will be auto-generated in the &lt;code&gt;docs/&lt;/code&gt; folder by &lt;a href=&#34;https://travis-ci.org/laradock/laradock/&#34;&gt;Travis CI&lt;/a&gt;.&lt;/p&gt;
@@ -2427,9 +2369,9 @@ features, by not reporting duplicate issues.&lt;/em&gt;&lt;/p&gt;
 
 &lt;ol&gt;
 &lt;li&gt;Install &lt;a href=&#34;https://gohugo.io/&#34;&gt;Hugo&lt;/a&gt; on your machine.&lt;/li&gt;
-&lt;li&gt;Edit the &lt;code&gt;DOCUMENTATION/_settings/content&lt;/code&gt;.&lt;/li&gt;
+&lt;li&gt;Edit the &lt;code&gt;DOCUMENTATION/content&lt;/code&gt;.&lt;/li&gt;
 &lt;li&gt;Delete the &lt;code&gt;/docs&lt;/code&gt; folder from the root.&lt;/li&gt;
-&lt;li&gt;After you finish the editing, go to &lt;code&gt;DOCUMENTATION/_settings/&lt;/code&gt; and run the &lt;code&gt;hugo&lt;/code&gt; command to generate the HTML docs (inside a new &lt;code&gt;/docs&lt;/code&gt; folder).&lt;/li&gt;
+&lt;li&gt;After you finish the editing, go to &lt;code&gt;DOCUMENTATION/&lt;/code&gt; and run the &lt;code&gt;hugo&lt;/code&gt; command to generate the HTML docs (inside a new &lt;code&gt;/docs&lt;/code&gt; folder).&lt;/li&gt;
 &lt;/ol&gt;
 
 &lt;h2 id=&#34;how-to-support-new-software-add-new-container&#34;&gt;How to support new Software (Add new Container)&lt;/h2&gt;

+ 68 - 122
docs/introduction/index.html

@@ -22,7 +22,7 @@
 
     <meta property="og:url" content="http://laradock.io/introduction/">
     <meta property="og:title" content="Laradock">
-    
+    <meta property="og:image" content="http://laradock.io/logo.png">
     <meta name="apple-mobile-web-app-title" content="Laradock">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
@@ -129,15 +129,19 @@
 <main class="main">
 	<div class="drawer">
 		<nav aria-label="Navigation">
-  
-    
+  <a href="http://laradock.io/" class="project">
+    <div class="banner">
+      
+        <div class="logo">
+          <img src="http://laradock.io/logo.png">
+        </div>
       
       
         
         
       
-    
-  
+    </div>
+  </a>
 
   <div class="scrollable">
     <div class="wrapper">
@@ -331,15 +335,17 @@
 
 			
 
-<p>Laradock strives to make the PHP development experience easier and faster.</p>
+<p>A full PHP development environment for Docker.</p>
+
+<p>Includes pre-packaged Docker Images, all pre-configured to provide a wonderful PHP development environment.</p>
 
-<p>It contains pre-packaged Docker Images that provides you a wonderful <em>development</em> environment without requiring you to install PHP, NGINX, MySQL, Redis, and any other software on your machines.</p>
+<p>Laradock is well known in the Laravel community, as the project started with single focus on running Laravel projects on Docker. Later and due to the large adoption from the PHP community, it started supporting other PHP projects like Symfony, CodeIgniter, WordPress, Drupal&hellip;</p>
 
-<p>Laradock is configured to run Laravel Apps by default, and it can be modified to run all kinds of PHP Apps (Symfony, CodeIgniter, WordPress, Drupal&hellip;).</p>
+<p><img src="https://s19.postimg.org/jblfytw9f/laradock-logo.jpg" alt="" /></p>
 
 <h2 id="quick-overview">Quick Overview</h2>
 
-<p>Let&rsquo;s see how easy it is to install <code>NGINX</code>, <code>PHP</code>, <code>Composer</code>, <code>MySQL</code>, <code>Redis</code> and <code>beanstalkd</code>:</p>
+<p>Let&rsquo;s see how easy it is to install <code>NGINX</code>, <code>PHP</code>, <code>Composer</code>, <code>MySQL</code>, <code>Redis</code> and <code>Beanstalkd</code>:</p>
 
 <p>1 - Clone Laradock inside your PHP project:</p>
 
@@ -368,55 +374,6 @@ QUEUE_HOST=beanstalkd
 <pre><code class="language-shell">That's it! enjoy :)
 </code></pre>
 
-<p><a name="what-is-docker"></a></p>
-
-<h2 id="what-is-docker">What is Docker?</h2>
-
-<p><a href="https://www.docker.com">Docker</a> is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of <a href="https://en.wikipedia.org/wiki/Operating-system-level_virtualization">operating-system-level virtualization</a> on Linux, Mac OS and Windows.</p>
-
-<p><a name="why-docker-not-vagrant"></a></p>
-
-<h2 id="why-docker-not-vagrant">Why Docker not Vagrant!?</h2>
-
-<p><a href="https://www.vagrantup.com">Vagrant</a> creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.</p>
-
-<p>Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you <strong>lightweight</strong> Virtual Containers, that share the same kernel and allow to safely execute independent processes.</p>
-
-<p>In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.</p>
-
-<p>Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).</p>
-
-<p><a name="laradock-vs-homestead"></a></p>
-
-<h2 id="laradock-vs-homestead-for-laravel-developers">Laradock VS Homestead (For Laravel Developers)</h2>
-
-<blockquote>
-<p>Laradock It&rsquo;s like Laravel Homestead but for Docker instead of Vagrant.</p>
-</blockquote>
-
-<p>Laradock and <a href="https://laravel.com/docs/master/homestead">Homestead</a> both give you complete virtual development environments. (Without the need to install and configure every single software on your own Operating System).</p>
-
-<ul>
-<li><p>Homestead is a tool that controls Vagrant for you (using Homestead special commands). And Vagrant manages your Virtual Machine.</p></li>
-
-<li><p>Laradock is a tool that controls Docker for you (using Docker &amp; Docker Compose official commands). And Docker manages your Virtual Containers.</p></li>
-</ul>
-
-<p>Running a virtual container is much faster than running a full virtual Machine. Thus <strong>Laradock is much faster than Homestead</strong>.</p>
-
-<p><a name="Demo"></a></p>
-
-<h2 id="demo-video">Demo Video</h2>
-
-<p>What&rsquo;s better than a <strong>Demo Video</strong>:</p>
-
-<ul>
-<li>Laradock <a href="https://www.youtube.com/watch?v=TQii1jDa96Y">v4.*</a></li>
-<li>Laradock <a href="https://www.youtube.com/watch?v=-DamFMczwDA">v2.*</a></li>
-<li>Laradock <a href="https://www.youtube.com/watch?v=jGkyO6Is_aI">v0.3</a></li>
-<li>Laradock <a href="https://www.youtube.com/watch?v=3YQsHe6oF80">v0.1</a></li>
-</ul>
-
 <p><a name="features"></a></p>
 
 <h2 id="features">Features</h2>
@@ -439,83 +396,72 @@ QUEUE_HOST=beanstalkd
 
 <p><a name="Supported-Containers"></a></p>
 
-<h2 id="supported-software-containers">Supported Software (Containers)</h2>
+<h2 id="supported-software-images">Supported Software (Images)</h2>
 
-<ul>
-<li><strong>Database Engines:</strong>
+<p>In adhering to the separation of concerns principle as promoted by Docker, Laradock runs each software on its own Container.
+You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm.</p>
 
 <ul>
-<li>MySQL</li>
-<li>MariaDB</li>
-<li>MongoDB</li>
-<li>Neo4j</li>
-<li>RethinkDB</li>
-<li>PostgreSQL</li>
-<li>Postgres Postgis</li>
-</ul></li>
+<li><strong>Database Engines:</strong>
+MySQL - MariaDB - MongoDB - Neo4j - RethinkDB - PostgreSQL - Postgres Postgis.</li>
 <li><strong>Cache Engines:</strong>
-
-<ul>
-<li>Redis</li>
-<li>Memcached</li>
-<li>Aerospike</li>
-</ul></li>
+Redis - Memcached - Aerospike</li>
 <li><strong>PHP Servers:</strong>
-
-<ul>
-<li>NGINX</li>
-<li>Apache2</li>
-<li>Caddy</li>
-</ul></li>
+NGINX - Apache2 - Caddy</li>
 <li><strong>PHP Compilers:</strong>
-
-<ul>
-<li>PHP-FPM</li>
-<li>HHVM</li>
-</ul></li>
-<li><strong>Message Queuing Systems:</strong>
-
-<ul>
-<li>Beanstalkd</li>
-<li>Beanstalkd Console</li>
-<li>RabbitMQ</li>
-<li>RabbitMQ Console</li>
-</ul></li>
+PHP FPM - HHVM</li>
+<li><strong>Message Queuing:</strong>
+Beanstalkd - Beanstalkd Console - RabbitMQ - RabbitMQ Console</li>
 <li><strong>Tools:</strong>
+PhpMyAdmin - Adminer - PgAdmin - ElasticSearch - Selenium - Certbot - Mailhog - Minio&hellip;</li>
+</ul>
 
-<ul>
-<li>PhpMyAdmin</li>
-<li>Adminer</li>
-<li>PgAdmin</li>
-<li>ElasticSearch</li>
-<li>Selenium</li>
-<li>Certbot</li>
-<li>Mailhog</li>
-<li>Minio</li>
-<li>Workspace
+<p>Laradock introduces the <strong>Workspace</strong> Image, as a development environment.
+It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose.</p>
 
-<ul>
-<li>PHP7-CLI</li>
-<li>Composer</li>
-<li>Git</li>
-<li>Linuxbrew</li>
-<li>Node</li>
-<li>Gulp</li>
-<li>SQLite</li>
-<li>xDebug</li>
-<li>Envoy</li>
-<li>Deployer</li>
-<li>Vim</li>
-<li>Yarn</li>
-<li>&hellip; Many other supported tools are not documented. (Will be updated soon)</li>
-</ul></li>
-</ul></li>
-</ul>
+<p><strong>Workspace Image Tools</strong>
+PHP CLI - Composer - Git - Linuxbrew - Node - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn&hellip;</p>
+
+<p>You can choose, which tools to install in your workspace container and other containers, from the <code>.env</code> file.</p>
 
 <blockquote>
-<p>If you can&rsquo;t find your Software, build it yourself and add it to this list. Contributions are welcomed :)</p>
+<p>If you modify <code>docker-compose.yml</code>, <code>.env</code> or any <code>dockerfile</code> file, you must re-build your containers, to see those effects in the running instance.</p>
 </blockquote>
 
+<p>If you can&rsquo;t find your Software in the list, build it yourself and sumit it. Contributions are welcomed :)</p>
+
+<p><a name="what-is-docker"></a></p>
+
+<h2 id="what-is-docker">What is Docker?</h2>
+
+<p><a href="https://www.docker.com">Docker</a> is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of <a href="https://en.wikipedia.org/wiki/Operating-system-level_virtualization">operating-system-level virtualization</a> on Linux, Mac OS and Windows.</p>
+
+<p><a name="why-docker-not-vagrant"></a></p>
+
+<h2 id="why-docker-not-vagrant">Why Docker not Vagrant!?</h2>
+
+<p><a href="https://www.vagrantup.com">Vagrant</a> creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.</p>
+
+<p>Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you <strong>lightweight</strong> Virtual Containers, that share the same kernel and allow to safely execute independent processes.</p>
+
+<p>In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.</p>
+
+<p>Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).</p>
+
+<p><a name="Demo"></a></p>
+
+<h2 id="demo-video">Demo Video</h2>
+
+<p>What&rsquo;s better than a <strong>Demo Video</strong>:</p>
+
+<ul>
+<li>Laradock v5.* (soon or never)</li>
+<li>Laradock <a href="https://www.youtube.com/watch?v=TQii1jDa96Y">v4.*</a></li>
+<li>Laradock <a href="https://www.youtube.com/watch?v=-DamFMczwDA">v2.*</a></li>
+<li>Laradock <a href="https://www.youtube.com/watch?v=jGkyO6Is_aI">v0.3</a></li>
+<li>Laradock <a href="https://www.youtube.com/watch?v=3YQsHe6oF80">v0.1</a></li>
+</ul>
+
 <p><a name="Chat"></a></p>
 
 <h2 id="chat-with-us">Chat with us</h2>

+ 59 - 117
docs/introduction/index.xml

@@ -16,15 +16,17 @@
       <guid>http://laradock.io/introduction/</guid>
       <description>
 
-&lt;p&gt;Laradock strives to make the PHP development experience easier and faster.&lt;/p&gt;
+&lt;p&gt;A full PHP development environment for Docker.&lt;/p&gt;
 
-&lt;p&gt;It contains pre-packaged Docker Images that provides you a wonderful &lt;em&gt;development&lt;/em&gt; environment without requiring you to install PHP, NGINX, MySQL, Redis, and any other software on your machines.&lt;/p&gt;
+&lt;p&gt;Includes pre-packaged Docker Images, all pre-configured to provide a wonderful PHP development environment.&lt;/p&gt;
 
-&lt;p&gt;Laradock is configured to run Laravel Apps by default, and it can be modified to run all kinds of PHP Apps (Symfony, CodeIgniter, WordPress, Drupal&amp;hellip;).&lt;/p&gt;
+&lt;p&gt;Laradock is well known in the Laravel community, as the project started with single focus on running Laravel projects on Docker. Later and due to the large adoption from the PHP community, it started supporting other PHP projects like Symfony, CodeIgniter, WordPress, Drupal&amp;hellip;&lt;/p&gt;
+
+&lt;p&gt;&lt;img src=&#34;https://s19.postimg.org/jblfytw9f/laradock-logo.jpg&#34; alt=&#34;&#34; /&gt;&lt;/p&gt;
 
 &lt;h2 id=&#34;quick-overview&#34;&gt;Quick Overview&lt;/h2&gt;
 
-&lt;p&gt;Let&amp;rsquo;s see how easy it is to install &lt;code&gt;NGINX&lt;/code&gt;, &lt;code&gt;PHP&lt;/code&gt;, &lt;code&gt;Composer&lt;/code&gt;, &lt;code&gt;MySQL&lt;/code&gt;, &lt;code&gt;Redis&lt;/code&gt; and &lt;code&gt;beanstalkd&lt;/code&gt;:&lt;/p&gt;
+&lt;p&gt;Let&amp;rsquo;s see how easy it is to install &lt;code&gt;NGINX&lt;/code&gt;, &lt;code&gt;PHP&lt;/code&gt;, &lt;code&gt;Composer&lt;/code&gt;, &lt;code&gt;MySQL&lt;/code&gt;, &lt;code&gt;Redis&lt;/code&gt; and &lt;code&gt;Beanstalkd&lt;/code&gt;:&lt;/p&gt;
 
 &lt;p&gt;1 - Clone Laradock inside your PHP project:&lt;/p&gt;
 
@@ -53,55 +55,6 @@ QUEUE_HOST=beanstalkd
 &lt;pre&gt;&lt;code class=&#34;language-shell&#34;&gt;That&#39;s it! enjoy :)
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;&lt;a name=&#34;what-is-docker&#34;&gt;&lt;/a&gt;&lt;/p&gt;
-
-&lt;h2 id=&#34;what-is-docker&#34;&gt;What is Docker?&lt;/h2&gt;
-
-&lt;p&gt;&lt;a href=&#34;https://www.docker.com&#34;&gt;Docker&lt;/a&gt; is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of &lt;a href=&#34;https://en.wikipedia.org/wiki/Operating-system-level_virtualization&#34;&gt;operating-system-level virtualization&lt;/a&gt; on Linux, Mac OS and Windows.&lt;/p&gt;
-
-&lt;p&gt;&lt;a name=&#34;why-docker-not-vagrant&#34;&gt;&lt;/a&gt;&lt;/p&gt;
-
-&lt;h2 id=&#34;why-docker-not-vagrant&#34;&gt;Why Docker not Vagrant!?&lt;/h2&gt;
-
-&lt;p&gt;&lt;a href=&#34;https://www.vagrantup.com&#34;&gt;Vagrant&lt;/a&gt; creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.&lt;/p&gt;
-
-&lt;p&gt;Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you &lt;strong&gt;lightweight&lt;/strong&gt; Virtual Containers, that share the same kernel and allow to safely execute independent processes.&lt;/p&gt;
-
-&lt;p&gt;In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.&lt;/p&gt;
-
-&lt;p&gt;Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).&lt;/p&gt;
-
-&lt;p&gt;&lt;a name=&#34;laradock-vs-homestead&#34;&gt;&lt;/a&gt;&lt;/p&gt;
-
-&lt;h2 id=&#34;laradock-vs-homestead-for-laravel-developers&#34;&gt;Laradock VS Homestead (For Laravel Developers)&lt;/h2&gt;
-
-&lt;blockquote&gt;
-&lt;p&gt;Laradock It&amp;rsquo;s like Laravel Homestead but for Docker instead of Vagrant.&lt;/p&gt;
-&lt;/blockquote&gt;
-
-&lt;p&gt;Laradock and &lt;a href=&#34;https://laravel.com/docs/master/homestead&#34;&gt;Homestead&lt;/a&gt; both give you complete virtual development environments. (Without the need to install and configure every single software on your own Operating System).&lt;/p&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;p&gt;Homestead is a tool that controls Vagrant for you (using Homestead special commands). And Vagrant manages your Virtual Machine.&lt;/p&gt;&lt;/li&gt;
-
-&lt;li&gt;&lt;p&gt;Laradock is a tool that controls Docker for you (using Docker &amp;amp; Docker Compose official commands). And Docker manages your Virtual Containers.&lt;/p&gt;&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;p&gt;Running a virtual container is much faster than running a full virtual Machine. Thus &lt;strong&gt;Laradock is much faster than Homestead&lt;/strong&gt;.&lt;/p&gt;
-
-&lt;p&gt;&lt;a name=&#34;Demo&#34;&gt;&lt;/a&gt;&lt;/p&gt;
-
-&lt;h2 id=&#34;demo-video&#34;&gt;Demo Video&lt;/h2&gt;
-
-&lt;p&gt;What&amp;rsquo;s better than a &lt;strong&gt;Demo Video&lt;/strong&gt;:&lt;/p&gt;
-
-&lt;ul&gt;
-&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=TQii1jDa96Y&#34;&gt;v4.*&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=-DamFMczwDA&#34;&gt;v2.*&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=jGkyO6Is_aI&#34;&gt;v0.3&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=3YQsHe6oF80&#34;&gt;v0.1&lt;/a&gt;&lt;/li&gt;
-&lt;/ul&gt;
-
 &lt;p&gt;&lt;a name=&#34;features&#34;&gt;&lt;/a&gt;&lt;/p&gt;
 
 &lt;h2 id=&#34;features&#34;&gt;Features&lt;/h2&gt;
@@ -124,83 +77,72 @@ QUEUE_HOST=beanstalkd
 
 &lt;p&gt;&lt;a name=&#34;Supported-Containers&#34;&gt;&lt;/a&gt;&lt;/p&gt;
 
-&lt;h2 id=&#34;supported-software-containers&#34;&gt;Supported Software (Containers)&lt;/h2&gt;
+&lt;h2 id=&#34;supported-software-images&#34;&gt;Supported Software (Images)&lt;/h2&gt;
 
-&lt;ul&gt;
-&lt;li&gt;&lt;strong&gt;Database Engines:&lt;/strong&gt;
+&lt;p&gt;In adhering to the separation of concerns principle as promoted by Docker, Laradock runs each software on its own Container.
+You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm.&lt;/p&gt;
 
 &lt;ul&gt;
-&lt;li&gt;MySQL&lt;/li&gt;
-&lt;li&gt;MariaDB&lt;/li&gt;
-&lt;li&gt;MongoDB&lt;/li&gt;
-&lt;li&gt;Neo4j&lt;/li&gt;
-&lt;li&gt;RethinkDB&lt;/li&gt;
-&lt;li&gt;PostgreSQL&lt;/li&gt;
-&lt;li&gt;Postgres Postgis&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;Database Engines:&lt;/strong&gt;
+MySQL - MariaDB - MongoDB - Neo4j - RethinkDB - PostgreSQL - Postgres Postgis.&lt;/li&gt;
 &lt;li&gt;&lt;strong&gt;Cache Engines:&lt;/strong&gt;
-
-&lt;ul&gt;
-&lt;li&gt;Redis&lt;/li&gt;
-&lt;li&gt;Memcached&lt;/li&gt;
-&lt;li&gt;Aerospike&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
+Redis - Memcached - Aerospike&lt;/li&gt;
 &lt;li&gt;&lt;strong&gt;PHP Servers:&lt;/strong&gt;
-
-&lt;ul&gt;
-&lt;li&gt;NGINX&lt;/li&gt;
-&lt;li&gt;Apache2&lt;/li&gt;
-&lt;li&gt;Caddy&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
+NGINX - Apache2 - Caddy&lt;/li&gt;
 &lt;li&gt;&lt;strong&gt;PHP Compilers:&lt;/strong&gt;
-
-&lt;ul&gt;
-&lt;li&gt;PHP-FPM&lt;/li&gt;
-&lt;li&gt;HHVM&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
-&lt;li&gt;&lt;strong&gt;Message Queuing Systems:&lt;/strong&gt;
-
-&lt;ul&gt;
-&lt;li&gt;Beanstalkd&lt;/li&gt;
-&lt;li&gt;Beanstalkd Console&lt;/li&gt;
-&lt;li&gt;RabbitMQ&lt;/li&gt;
-&lt;li&gt;RabbitMQ Console&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
+PHP FPM - HHVM&lt;/li&gt;
+&lt;li&gt;&lt;strong&gt;Message Queuing:&lt;/strong&gt;
+Beanstalkd - Beanstalkd Console - RabbitMQ - RabbitMQ Console&lt;/li&gt;
 &lt;li&gt;&lt;strong&gt;Tools:&lt;/strong&gt;
+PhpMyAdmin - Adminer - PgAdmin - ElasticSearch - Selenium - Certbot - Mailhog - Minio&amp;hellip;&lt;/li&gt;
+&lt;/ul&gt;
 
-&lt;ul&gt;
-&lt;li&gt;PhpMyAdmin&lt;/li&gt;
-&lt;li&gt;Adminer&lt;/li&gt;
-&lt;li&gt;PgAdmin&lt;/li&gt;
-&lt;li&gt;ElasticSearch&lt;/li&gt;
-&lt;li&gt;Selenium&lt;/li&gt;
-&lt;li&gt;Certbot&lt;/li&gt;
-&lt;li&gt;Mailhog&lt;/li&gt;
-&lt;li&gt;Minio&lt;/li&gt;
-&lt;li&gt;Workspace
+&lt;p&gt;Laradock introduces the &lt;strong&gt;Workspace&lt;/strong&gt; Image, as a development environment.
+It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose.&lt;/p&gt;
 
-&lt;ul&gt;
-&lt;li&gt;PHP7-CLI&lt;/li&gt;
-&lt;li&gt;Composer&lt;/li&gt;
-&lt;li&gt;Git&lt;/li&gt;
-&lt;li&gt;Linuxbrew&lt;/li&gt;
-&lt;li&gt;Node&lt;/li&gt;
-&lt;li&gt;Gulp&lt;/li&gt;
-&lt;li&gt;SQLite&lt;/li&gt;
-&lt;li&gt;xDebug&lt;/li&gt;
-&lt;li&gt;Envoy&lt;/li&gt;
-&lt;li&gt;Deployer&lt;/li&gt;
-&lt;li&gt;Vim&lt;/li&gt;
-&lt;li&gt;Yarn&lt;/li&gt;
-&lt;li&gt;&amp;hellip; Many other supported tools are not documented. (Will be updated soon)&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
-&lt;/ul&gt;&lt;/li&gt;
-&lt;/ul&gt;
+&lt;p&gt;&lt;strong&gt;Workspace Image Tools&lt;/strong&gt;
+PHP CLI - Composer - Git - Linuxbrew - Node - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn&amp;hellip;&lt;/p&gt;
+
+&lt;p&gt;You can choose, which tools to install in your workspace container and other containers, from the &lt;code&gt;.env&lt;/code&gt; file.&lt;/p&gt;
 
 &lt;blockquote&gt;
-&lt;p&gt;If you can&amp;rsquo;t find your Software, build it yourself and add it to this list. Contributions are welcomed :)&lt;/p&gt;
+&lt;p&gt;If you modify &lt;code&gt;docker-compose.yml&lt;/code&gt;, &lt;code&gt;.env&lt;/code&gt; or any &lt;code&gt;dockerfile&lt;/code&gt; file, you must re-build your containers, to see those effects in the running instance.&lt;/p&gt;
 &lt;/blockquote&gt;
 
+&lt;p&gt;If you can&amp;rsquo;t find your Software in the list, build it yourself and sumit it. Contributions are welcomed :)&lt;/p&gt;
+
+&lt;p&gt;&lt;a name=&#34;what-is-docker&#34;&gt;&lt;/a&gt;&lt;/p&gt;
+
+&lt;h2 id=&#34;what-is-docker&#34;&gt;What is Docker?&lt;/h2&gt;
+
+&lt;p&gt;&lt;a href=&#34;https://www.docker.com&#34;&gt;Docker&lt;/a&gt; is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of &lt;a href=&#34;https://en.wikipedia.org/wiki/Operating-system-level_virtualization&#34;&gt;operating-system-level virtualization&lt;/a&gt; on Linux, Mac OS and Windows.&lt;/p&gt;
+
+&lt;p&gt;&lt;a name=&#34;why-docker-not-vagrant&#34;&gt;&lt;/a&gt;&lt;/p&gt;
+
+&lt;h2 id=&#34;why-docker-not-vagrant&#34;&gt;Why Docker not Vagrant!?&lt;/h2&gt;
+
+&lt;p&gt;&lt;a href=&#34;https://www.vagrantup.com&#34;&gt;Vagrant&lt;/a&gt; creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.&lt;/p&gt;
+
+&lt;p&gt;Instead of providing a full Virtual Machines, like you get with Vagrant, Docker provides you &lt;strong&gt;lightweight&lt;/strong&gt; Virtual Containers, that share the same kernel and allow to safely execute independent processes.&lt;/p&gt;
+
+&lt;p&gt;In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.&lt;/p&gt;
+
+&lt;p&gt;Most importantly Docker can run on Development and on Production (same environment everywhere). While Vagrant is designed for Development only, (so you have to re-provision your server on Production every time).&lt;/p&gt;
+
+&lt;p&gt;&lt;a name=&#34;Demo&#34;&gt;&lt;/a&gt;&lt;/p&gt;
+
+&lt;h2 id=&#34;demo-video&#34;&gt;Demo Video&lt;/h2&gt;
+
+&lt;p&gt;What&amp;rsquo;s better than a &lt;strong&gt;Demo Video&lt;/strong&gt;:&lt;/p&gt;
+
+&lt;ul&gt;
+&lt;li&gt;Laradock v5.* (soon or never)&lt;/li&gt;
+&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=TQii1jDa96Y&#34;&gt;v4.*&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=-DamFMczwDA&#34;&gt;v2.*&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=jGkyO6Is_aI&#34;&gt;v0.3&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;Laradock &lt;a href=&#34;https://www.youtube.com/watch?v=3YQsHe6oF80&#34;&gt;v0.1&lt;/a&gt;&lt;/li&gt;
+&lt;/ul&gt;
+
 &lt;p&gt;&lt;a name=&#34;Chat&#34;&gt;&lt;/a&gt;&lt;/p&gt;
 
 &lt;h2 id=&#34;chat-with-us&#34;&gt;Chat with us&lt;/h2&gt;

+ 9 - 5
docs/license/index.html

@@ -22,7 +22,7 @@
 
     <meta property="og:url" content="http://laradock.io/license/">
     <meta property="og:title" content="Laradock">
-    
+    <meta property="og:image" content="http://laradock.io/logo.png">
     <meta name="apple-mobile-web-app-title" content="Laradock">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
@@ -129,15 +129,19 @@
 <main class="main">
 	<div class="drawer">
 		<nav aria-label="Navigation">
-  
-    
+  <a href="http://laradock.io/" class="project">
+    <div class="banner">
+      
+        <div class="logo">
+          <img src="http://laradock.io/logo.png">
+        </div>
       
       
         
         
       
-    
-  
+    </div>
+  </a>
 
   <div class="scrollable">
     <div class="wrapper">

+ 9 - 5
docs/related-projects/index.html

@@ -22,7 +22,7 @@
 
     <meta property="og:url" content="http://laradock.io/related-projects/">
     <meta property="og:title" content="Laradock">
-    
+    <meta property="og:image" content="http://laradock.io/logo.png">
     <meta name="apple-mobile-web-app-title" content="Laradock">
     <meta name="apple-mobile-web-app-capable" content="yes">
     <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
@@ -129,15 +129,19 @@
 <main class="main">
 	<div class="drawer">
 		<nav aria-label="Navigation">
-  
-    
+  <a href="http://laradock.io/" class="project">
+    <div class="banner">
+      
+        <div class="logo">
+          <img src="http://laradock.io/logo.png">
+        </div>
       
       
         
         
       
-    
-  
+    </div>
+  </a>
 
   <div class="scrollable">
     <div class="wrapper">

+ 12 - 1
docs/stylesheets/highlight/highlight.css

@@ -3,7 +3,7 @@
  * theme that is used as fallback in codeblocks 
  */
 .article pre code {
-	color: rgba(0, 0, 0, 0.8) !important;
+	color: rgba(0, 0, 0, 0.78) !important;
 }
 
 
@@ -103,3 +103,14 @@ font-style:italic;
 .hljs-strong {
 font-weight:700;
 }
+
+/*
+    OVERRIDING THE DEFAULT STYLES - By Mahmoud Zalt (mahmoud@zalt.me) for Laradock.io
+*/
+
+.project .logo img{
+    width: 140px;
+    height: 140px;
+    background: transparent;
+    border-radius: 0%;
+}