Explorar el Código

add missing workspace tools to the docs

Mahmoud Zalt hace 8 años
padre
commit
efc23a693d

+ 1 - 1
DOCUMENTATION/config.toml

@@ -11,7 +11,7 @@ googleAnalytics = "UA-37514928-9"
 [params]
 	# General information
 	author = "Mahmoud Zalt"
-	description = "Laradock documentations."
+	description = "Full PHP development environment for Docker."
 	copyright = ""
 
 	# Repository

+ 7 - 6
DOCUMENTATION/content/introduction/index.md

@@ -38,7 +38,7 @@ cp env-example .env
 docker-compose up -d nginx mysql redis beanstalkd
 ```
 
-3 - Open your project's `.env` file and set the following:
+4 - Open your project's `.env` file and set the following:
 
 ```shell
 DB_HOST=mysql
@@ -46,7 +46,7 @@ REDIS_HOST=redis
 QUEUE_HOST=beanstalkd
 ```
 
-4 - Open your browser and visit localhost: `http://localhost`.
+5 - Open your browser and visit localhost: `http://localhost`.
 
 ```shell
 That's it! enjoy :)
@@ -58,14 +58,15 @@ That's it! enjoy :)
 <a name="features"></a>
 ## Features
 
-- Easy switch between PHP versions: 7.0, 5.6, 5.5...
+- Easy switch between PHP versions: 7.1, 7.0, 5.6...
 - 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.
+- Pre-configured NGINX to host any code at your root directory.
+- Can use Laradock per project, or single Laradock for all projects.
+- Easy to install/remove software's in Containers using environment variables.
 - Clean and well structured Dockerfiles (`Dockerfile`).
 - Latest version of the Docker Compose file (`docker-compose`).
 - Everything is visible and editable.
@@ -98,7 +99,7 @@ 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...
+PHP CLI - Composer - Git - Linuxbrew - Node - V8JS - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn - SOAP - Drush...
 
 You can choose, which tools to install in your workspace container and other containers, from the `.env` file.
 

+ 0 - 1
docker-compose.yml

@@ -29,7 +29,6 @@ services:
           - INSTALL_DEPLOYER=${WORKSPACE_INSTALL_DEPLOYER}
           - INSTALL_LINUXBREW=${WORKSPACE_INSTALL_LINUXBREW}
           - INSTALL_MC=${WORKSPACE_INSTALL_MC}
-          - INSTALL_SYMFONY=${WORKSPACE_INSTALL_SYMFONY}
           - PUID=${WORKSPACE_PUID}
           - PGID=${WORKSPACE_PGID}
           - NODE_VERSION=${WORKSPACE_NODE_VERSION}

+ 1 - 1
docs/contributing/index.html

@@ -13,7 +13,7 @@
     <meta name="generator" content="Hugo 0.19" />
 
     
-    <meta name="description" content="Laradock documentations.">
+    <meta name="description" content="Full PHP development environment for Docker.">
     
     <link rel="canonical" href="http://laradock.io/contributing/">
     

+ 1 - 1
docs/documentation/index.html

@@ -13,7 +13,7 @@
     <meta name="generator" content="Hugo 0.19" />
 
     
-    <meta name="description" content="Laradock documentations.">
+    <meta name="description" content="Full PHP development environment for Docker.">
     
     <link rel="canonical" href="http://laradock.io/documentation/">
     

+ 1 - 1
docs/getting-started/index.html

@@ -13,7 +13,7 @@
     <meta name="generator" content="Hugo 0.19" />
 
     
-    <meta name="description" content="Laradock documentations.">
+    <meta name="description" content="Full PHP development environment for Docker.">
     
     <link rel="canonical" href="http://laradock.io/getting-started/">
     

+ 1 - 1
docs/help/index.html

@@ -13,7 +13,7 @@
     <meta name="generator" content="Hugo 0.19" />
 
     
-    <meta name="description" content="Laradock documentations.">
+    <meta name="description" content="Full PHP development environment for Docker.">
     
     <link rel="canonical" href="http://laradock.io/help/">
     

+ 8 - 7
docs/index.html

@@ -13,7 +13,7 @@
     <meta name="generator" content="Hugo 0.19" />
 
     
-    <meta name="description" content="Laradock documentations.">
+    <meta name="description" content="Full PHP development environment for Docker.">
     
     <link rel="canonical" href="http://laradock.io/">
     
@@ -363,14 +363,14 @@
 <pre><code class="language-shell">docker-compose up -d nginx mysql redis beanstalkd
 </code></pre>
 
-<p>3 - Open your project&rsquo;s <code>.env</code> file and set the following:</p>
+<p>4 - Open your project&rsquo;s <code>.env</code> file and set the following:</p>
 
 <pre><code class="language-shell">DB_HOST=mysql
 REDIS_HOST=redis
 QUEUE_HOST=beanstalkd
 </code></pre>
 
-<p>4 - Open your browser and visit localhost: <code>http://localhost</code>.</p>
+<p>5 - Open your browser and visit localhost: <code>http://localhost</code>.</p>
 
 <pre><code class="language-shell">That's it! enjoy :)
 </code></pre>
@@ -380,14 +380,15 @@ QUEUE_HOST=beanstalkd
 <h2 id="features">Features</h2>
 
 <ul>
-<li>Easy switch between PHP versions: 7.0, 5.6, 5.5&hellip;</li>
+<li>Easy switch between PHP versions: 7.1, 7.0, 5.6&hellip;</li>
 <li>Choose your favorite database engine: MySQL, Postgres, MariaDB&hellip;</li>
 <li>Run your own combination of software: Memcached, HHVM, Beanstalkd&hellip;</li>
 <li>Every software runs on a separate container: PHP-FPM, NGINX, PHP-CLI&hellip;</li>
 <li>Easy to customize any container, with simple edit to the <code>Dockerfile</code>.</li>
 <li>All Images extends from an official base Image. (Trusted base Images).</li>
-<li>Pre-configured NGINX for Laravel.</li>
-<li>Easy to apply configurations inside containers.</li>
+<li>Pre-configured NGINX to host any code at your root directory.</li>
+<li>Can use Laradock per project, or single Laradock for all projects.</li>
+<li>Easy to install/remove software&rsquo;s in Containers using environment variables.</li>
 <li>Clean and well structured Dockerfiles (<code>Dockerfile</code>).</li>
 <li>Latest version of the Docker Compose file (<code>docker-compose</code>).</li>
 <li>Everything is visible and editable.</li>
@@ -421,7 +422,7 @@ HAProxy - Jenkins - ElasticSearch - Selenium - Certbot - Mailhog - Minio - Varni
 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>
 
 <p><strong>Workspace Image Tools</strong>
-PHP CLI - Composer - Git - Linuxbrew - Node - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn&hellip;</p>
+PHP CLI - Composer - Git - Linuxbrew - Node - V8JS - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn - SOAP - Drush&hellip;</p>
 
 <p>You can choose, which tools to install in your workspace container and other containers, from the <code>.env</code> file.</p>
 

+ 7 - 6
docs/index.xml

@@ -43,14 +43,14 @@
 &lt;pre&gt;&lt;code class=&#34;language-shell&#34;&gt;docker-compose up -d nginx mysql redis beanstalkd
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;3 - Open your project&amp;rsquo;s &lt;code&gt;.env&lt;/code&gt; file and set the following:&lt;/p&gt;
+&lt;p&gt;4 - Open your project&amp;rsquo;s &lt;code&gt;.env&lt;/code&gt; file and set the following:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code class=&#34;language-shell&#34;&gt;DB_HOST=mysql
 REDIS_HOST=redis
 QUEUE_HOST=beanstalkd
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;4 - Open your browser and visit localhost: &lt;code&gt;http://localhost&lt;/code&gt;.&lt;/p&gt;
+&lt;p&gt;5 - Open your browser and visit localhost: &lt;code&gt;http://localhost&lt;/code&gt;.&lt;/p&gt;
 
 &lt;pre&gt;&lt;code class=&#34;language-shell&#34;&gt;That&#39;s it! enjoy :)
 &lt;/code&gt;&lt;/pre&gt;
@@ -60,14 +60,15 @@ QUEUE_HOST=beanstalkd
 &lt;h2 id=&#34;features&#34;&gt;Features&lt;/h2&gt;
 
 &lt;ul&gt;
-&lt;li&gt;Easy switch between PHP versions: 7.0, 5.6, 5.5&amp;hellip;&lt;/li&gt;
+&lt;li&gt;Easy switch between PHP versions: 7.1, 7.0, 5.6&amp;hellip;&lt;/li&gt;
 &lt;li&gt;Choose your favorite database engine: MySQL, Postgres, MariaDB&amp;hellip;&lt;/li&gt;
 &lt;li&gt;Run your own combination of software: Memcached, HHVM, Beanstalkd&amp;hellip;&lt;/li&gt;
 &lt;li&gt;Every software runs on a separate container: PHP-FPM, NGINX, PHP-CLI&amp;hellip;&lt;/li&gt;
 &lt;li&gt;Easy to customize any container, with simple edit to the &lt;code&gt;Dockerfile&lt;/code&gt;.&lt;/li&gt;
 &lt;li&gt;All Images extends from an official base Image. (Trusted base Images).&lt;/li&gt;
-&lt;li&gt;Pre-configured NGINX for Laravel.&lt;/li&gt;
-&lt;li&gt;Easy to apply configurations inside containers.&lt;/li&gt;
+&lt;li&gt;Pre-configured NGINX to host any code at your root directory.&lt;/li&gt;
+&lt;li&gt;Can use Laradock per project, or single Laradock for all projects.&lt;/li&gt;
+&lt;li&gt;Easy to install/remove software&amp;rsquo;s in Containers using environment variables.&lt;/li&gt;
 &lt;li&gt;Clean and well structured Dockerfiles (&lt;code&gt;Dockerfile&lt;/code&gt;).&lt;/li&gt;
 &lt;li&gt;Latest version of the Docker Compose file (&lt;code&gt;docker-compose&lt;/code&gt;).&lt;/li&gt;
 &lt;li&gt;Everything is visible and editable.&lt;/li&gt;
@@ -101,7 +102,7 @@ HAProxy - Jenkins - ElasticSearch - Selenium - Certbot - Mailhog - Minio - Varni
 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;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;
+PHP CLI - Composer - Git - Linuxbrew - Node - V8JS - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn - SOAP - Drush&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;
 

+ 8 - 7
docs/introduction/index.html

@@ -13,7 +13,7 @@
     <meta name="generator" content="Hugo 0.19" />
 
     
-    <meta name="description" content="Laradock documentations.">
+    <meta name="description" content="Full PHP development environment for Docker.">
     
     <link rel="canonical" href="http://laradock.io/introduction/">
     
@@ -362,14 +362,14 @@
 <pre><code class="language-shell">docker-compose up -d nginx mysql redis beanstalkd
 </code></pre>
 
-<p>3 - Open your project&rsquo;s <code>.env</code> file and set the following:</p>
+<p>4 - Open your project&rsquo;s <code>.env</code> file and set the following:</p>
 
 <pre><code class="language-shell">DB_HOST=mysql
 REDIS_HOST=redis
 QUEUE_HOST=beanstalkd
 </code></pre>
 
-<p>4 - Open your browser and visit localhost: <code>http://localhost</code>.</p>
+<p>5 - Open your browser and visit localhost: <code>http://localhost</code>.</p>
 
 <pre><code class="language-shell">That's it! enjoy :)
 </code></pre>
@@ -379,14 +379,15 @@ QUEUE_HOST=beanstalkd
 <h2 id="features">Features</h2>
 
 <ul>
-<li>Easy switch between PHP versions: 7.0, 5.6, 5.5&hellip;</li>
+<li>Easy switch between PHP versions: 7.1, 7.0, 5.6&hellip;</li>
 <li>Choose your favorite database engine: MySQL, Postgres, MariaDB&hellip;</li>
 <li>Run your own combination of software: Memcached, HHVM, Beanstalkd&hellip;</li>
 <li>Every software runs on a separate container: PHP-FPM, NGINX, PHP-CLI&hellip;</li>
 <li>Easy to customize any container, with simple edit to the <code>Dockerfile</code>.</li>
 <li>All Images extends from an official base Image. (Trusted base Images).</li>
-<li>Pre-configured NGINX for Laravel.</li>
-<li>Easy to apply configurations inside containers.</li>
+<li>Pre-configured NGINX to host any code at your root directory.</li>
+<li>Can use Laradock per project, or single Laradock for all projects.</li>
+<li>Easy to install/remove software&rsquo;s in Containers using environment variables.</li>
 <li>Clean and well structured Dockerfiles (<code>Dockerfile</code>).</li>
 <li>Latest version of the Docker Compose file (<code>docker-compose</code>).</li>
 <li>Everything is visible and editable.</li>
@@ -420,7 +421,7 @@ HAProxy - Jenkins - ElasticSearch - Selenium - Certbot - Mailhog - Minio - Varni
 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>
 
 <p><strong>Workspace Image Tools</strong>
-PHP CLI - Composer - Git - Linuxbrew - Node - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn&hellip;</p>
+PHP CLI - Composer - Git - Linuxbrew - Node - V8JS - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn - SOAP - Drush&hellip;</p>
 
 <p>You can choose, which tools to install in your workspace container and other containers, from the <code>.env</code> file.</p>
 

+ 7 - 6
docs/introduction/index.xml

@@ -43,14 +43,14 @@
 &lt;pre&gt;&lt;code class=&#34;language-shell&#34;&gt;docker-compose up -d nginx mysql redis beanstalkd
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;3 - Open your project&amp;rsquo;s &lt;code&gt;.env&lt;/code&gt; file and set the following:&lt;/p&gt;
+&lt;p&gt;4 - Open your project&amp;rsquo;s &lt;code&gt;.env&lt;/code&gt; file and set the following:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code class=&#34;language-shell&#34;&gt;DB_HOST=mysql
 REDIS_HOST=redis
 QUEUE_HOST=beanstalkd
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;4 - Open your browser and visit localhost: &lt;code&gt;http://localhost&lt;/code&gt;.&lt;/p&gt;
+&lt;p&gt;5 - Open your browser and visit localhost: &lt;code&gt;http://localhost&lt;/code&gt;.&lt;/p&gt;
 
 &lt;pre&gt;&lt;code class=&#34;language-shell&#34;&gt;That&#39;s it! enjoy :)
 &lt;/code&gt;&lt;/pre&gt;
@@ -60,14 +60,15 @@ QUEUE_HOST=beanstalkd
 &lt;h2 id=&#34;features&#34;&gt;Features&lt;/h2&gt;
 
 &lt;ul&gt;
-&lt;li&gt;Easy switch between PHP versions: 7.0, 5.6, 5.5&amp;hellip;&lt;/li&gt;
+&lt;li&gt;Easy switch between PHP versions: 7.1, 7.0, 5.6&amp;hellip;&lt;/li&gt;
 &lt;li&gt;Choose your favorite database engine: MySQL, Postgres, MariaDB&amp;hellip;&lt;/li&gt;
 &lt;li&gt;Run your own combination of software: Memcached, HHVM, Beanstalkd&amp;hellip;&lt;/li&gt;
 &lt;li&gt;Every software runs on a separate container: PHP-FPM, NGINX, PHP-CLI&amp;hellip;&lt;/li&gt;
 &lt;li&gt;Easy to customize any container, with simple edit to the &lt;code&gt;Dockerfile&lt;/code&gt;.&lt;/li&gt;
 &lt;li&gt;All Images extends from an official base Image. (Trusted base Images).&lt;/li&gt;
-&lt;li&gt;Pre-configured NGINX for Laravel.&lt;/li&gt;
-&lt;li&gt;Easy to apply configurations inside containers.&lt;/li&gt;
+&lt;li&gt;Pre-configured NGINX to host any code at your root directory.&lt;/li&gt;
+&lt;li&gt;Can use Laradock per project, or single Laradock for all projects.&lt;/li&gt;
+&lt;li&gt;Easy to install/remove software&amp;rsquo;s in Containers using environment variables.&lt;/li&gt;
 &lt;li&gt;Clean and well structured Dockerfiles (&lt;code&gt;Dockerfile&lt;/code&gt;).&lt;/li&gt;
 &lt;li&gt;Latest version of the Docker Compose file (&lt;code&gt;docker-compose&lt;/code&gt;).&lt;/li&gt;
 &lt;li&gt;Everything is visible and editable.&lt;/li&gt;
@@ -101,7 +102,7 @@ HAProxy - Jenkins - ElasticSearch - Selenium - Certbot - Mailhog - Minio - Varni
 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;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;
+PHP CLI - Composer - Git - Linuxbrew - Node - V8JS - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn - SOAP - Drush&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;
 

+ 1 - 1
docs/license/index.html

@@ -13,7 +13,7 @@
     <meta name="generator" content="Hugo 0.19" />
 
     
-    <meta name="description" content="Laradock documentations.">
+    <meta name="description" content="Full PHP development environment for Docker.">
     
     <link rel="canonical" href="http://laradock.io/license/">
     

+ 1 - 1
docs/related-projects/index.html

@@ -13,7 +13,7 @@
     <meta name="generator" content="Hugo 0.19" />
 
     
-    <meta name="description" content="Laradock documentations.">
+    <meta name="description" content="Full PHP development environment for Docker.">
     
     <link rel="canonical" href="http://laradock.io/related-projects/">
     

+ 0 - 1
env-example

@@ -26,7 +26,6 @@ WORKSPACE_INSTALL_LARAVEL_ENVOY=false
 WORKSPACE_INSTALL_DEPLOYER=false
 WORKSPACE_INSTALL_LINUXBREW=false
 WORKSPACE_INSTALL_MC=false
-WORKSPACE_INSTALL_SYMFONY=false
 WORKSPACE_PUID=1000
 WORKSPACE_PGID=1000
 WORKSPACE_NODE_VERSION=stable