From 84b742315ab2389c90d0d4dbc6440de3afeea681 Mon Sep 17 00:00:00 2001 From: David Chen Date: Thu, 2 Mar 2017 16:56:35 +0800 Subject: [PATCH 1/7] Update README-zh.md (#648) --- README-zh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-zh.md b/README-zh.md index 5ef4d15a..f4f39125 100644 --- a/README-zh.md +++ b/README-zh.md @@ -153,7 +153,7 @@ Homestead 是一个工具,为你控制虚拟机(使用Homestead特殊命令)。V ## 演示视频 还有什么比**演示视频**好: -- LaraDock v4.0 (即将到来的...) +- LaraDock [v4.0](https://www.youtube.com/watch?v=TQii1jDa96Y) - LaraDock [v2.2](https://www.youtube.com/watch?v=-DamFMczwDA) - LaraDock [v0.3](https://www.youtube.com/watch?v=jGkyO6Is_aI) - LaraDock [v0.1](https://www.youtube.com/watch?v=3YQsHe6oF80) From a7503ce3f3cfcbf5d855964495b1a20bc7db38a2 Mon Sep 17 00:00:00 2001 From: Thor Erik Lie Date: Sun, 5 Mar 2017 15:06:22 +0100 Subject: [PATCH 2/7] Add Minio container Minio is an s3 compatible server written in go. --- docker-compose.yml | 15 ++++++++++ docs/_settings/content/documentation/index.md | 27 +++++++++++++++++ docs/_settings/content/introduction/index.md | 1 + minio/Dockerfile | 5 ++++ workspace/Dockerfile | 18 +++++++++++- workspace/mc/config.json | 29 +++++++++++++++++++ 6 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 minio/Dockerfile create mode 100644 workspace/mc/config.json diff --git a/docker-compose.yml b/docker-compose.yml index 67af2244..91e689c6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -29,6 +29,7 @@ services: - INSTALL_LARAVEL_ENVOY=false - INSTALL_DEPLOYER=false - INSTALL_LINUXBREW=false + - INSTALL_MC=false - PUID=1000 - PGID=1000 - NODE_VERSION=stable @@ -120,6 +121,18 @@ services: links: - workspace +### Minio Container ######################################### + + minio: + build: ./minio + volumes: + - minio:/export + ports: + - "9000:9000" + environment: + MINIO_ACCESS_KEY: access + MINIO_SECRET_KEY: secretkey + ### MySQL Container ######################################### mysql: @@ -354,6 +367,8 @@ volumes: driver: "local" mongo: driver: "local" + minio: + driver: "local" rethinkdb: driver: "local" phpmyadmin: diff --git a/docs/_settings/content/documentation/index.md b/docs/_settings/content/documentation/index.md index 3494b1a1..f8785f81 100644 --- a/docs/_settings/content/documentation/index.md +++ b/docs/_settings/content/documentation/index.md @@ -850,8 +850,35 @@ docker-compose up -d rethinkdb - set the `DB_DATABASE` to `database`. +
+ +## Use Minio +1 - Configure Minio: + - On the workspace container, change `INSTALL_MC` to true to get the client + - Set `MINIO_ACCESS_KEY` and `MINIO_ACCESS_SECRET` if you wish to set proper keys +2 - Run the Minio Container (`minio`) with the `docker-compose up` command. Example: + +```bash +docker-compose up -d minio +``` + +3 - Open your browser and visit the localhost on port **9000** at the following URL: `http://localhost:9000` + +4 - Create a bucket either through the webui or using the mc client: + ```bash + mc mb minio/bucket + ``` + +5 - When configuring your other clients use the following details: + ``` + S3_HOST=http://minio + S3_KEY=access + S3_SECRET=secretkey + S3_REGION=us-east-1 + S3_BUCKET=bucket + ```
diff --git a/docs/_settings/content/introduction/index.md b/docs/_settings/content/introduction/index.md index 850796c0..463bf0b1 100644 --- a/docs/_settings/content/introduction/index.md +++ b/docs/_settings/content/introduction/index.md @@ -165,6 +165,7 @@ What's better than a **Demo Video**: - PgAdmin - ElasticSearch - Selenium + - Minio - Workspace - PHP7-CLI - Composer diff --git a/minio/Dockerfile b/minio/Dockerfile new file mode 100644 index 00000000..88a75426 --- /dev/null +++ b/minio/Dockerfile @@ -0,0 +1,5 @@ +FROM minio/minio + +MAINTAINER Thor Erik Lie + +ENTRYPOINT ["minio", "server", "/export"] diff --git a/workspace/Dockerfile b/workspace/Dockerfile index 39b0996f..d3ab702e 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -113,7 +113,7 @@ RUN echo "" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \ echo "source /home/laradock/aliases.sh" >> ~/.bashrc && \ echo "" >> ~/.bashrc - + USER root RUN echo "" >> ~/.bashrc && \ echo "# Load Custom Aliases" >> ~/.bashrc && \ @@ -374,6 +374,22 @@ RUN if [ ${INSTALL_LINUXBREW} = true ]; then \ echo 'export LD_LIBRARY_PATH="$LINUXBREWHOME/lib64:$LINUXBREWHOME/lib:$LD_LIBRARY_PATH"' >> ~/.bashrc \ ;fi +##################################### +# Minio: +##################################### +USER root +ARG INSTALL_MC=false +ENV INSTALL_MC ${INSTALL_MC} + +COPY mc/config.json /root/.mc/config.json + +RUN if [ ${INSTALL_MC} = true ]; then\ + curl -fsSL -o /usr/local/bin/mc https://dl.minio.io/client/mc/release/linux-amd64/mc && \ + chmod +x /usr/local/bin/mc \ +;fi + +USER laradock + # #-------------------------------------------------------------------------- # Final Touch diff --git a/workspace/mc/config.json b/workspace/mc/config.json new file mode 100644 index 00000000..706c7c12 --- /dev/null +++ b/workspace/mc/config.json @@ -0,0 +1,29 @@ +{ + "version": "8", + "hosts": { + "gcs": { + "url": "https://storage.googleapis.com", + "accessKey": "YOUR-ACCESS-KEY-HERE", + "secretKey": "YOUR-SECRET-KEY-HERE", + "api": "S3v2" + }, + "minio": { + "url": "http://minio:9000", + "accessKey": "access", + "secretKey": "secretkey", + "api": "S3v4" + }, + "play": { + "url": "https://play.minio.io:9000", + "accessKey": "Q3AM3UQ867SPQQA43P2F", + "secretKey": "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG", + "api": "S3v4" + }, + "s3": { + "url": "https://s3.amazonaws.com", + "accessKey": "YOUR-ACCESS-KEY-HERE", + "secretKey": "YOUR-SECRET-KEY-HERE", + "api": "S3v4" + } + } +} From d95b52b7dbce3e4447607125d6e4fbd4e076105b Mon Sep 17 00:00:00 2001 From: Thor Erik Lie Date: Sun, 5 Mar 2017 15:07:29 +0100 Subject: [PATCH 3/7] Docs updated --- docs/contributing/index.html | 2 +- docs/documentation/index.html | 32 +- docs/documentation/index.xml | 30 + docs/getting-started/index.html | 2 +- docs/help/index.html | 2 +- docs/index.html | 1753 +----------------------------- docs/index.xml | 31 + docs/introduction/index.html | 3 +- docs/introduction/index.xml | 1 + docs/license/index.html | 2 +- docs/related-projects/index.html | 2 +- 11 files changed, 117 insertions(+), 1743 deletions(-) diff --git a/docs/contributing/index.html b/docs/contributing/index.html index 81dff3ce..4ee5be91 100644 --- a/docs/contributing/index.html +++ b/docs/contributing/index.html @@ -10,7 +10,7 @@ Contributing - Laradock Docs - + diff --git a/docs/documentation/index.html b/docs/documentation/index.html index 19ec4a76..eac1a214 100644 --- a/docs/documentation/index.html +++ b/docs/documentation/index.html @@ -10,7 +10,7 @@ Documentation - Laradock Docs - + @@ -1028,6 +1028,36 @@ A package (Laravel RethinkD
  • set the DB_DATABASE to database.
  • +


    +

    + +

    Use Minio

    + +

    1 - Configure Minio: + - On the workspace container, change INSTALL_MC to true to get the client + - Set MINIO_ACCESS_KEY and MINIO_ACCESS_SECRET if you wish to set proper keys

    + +

    2 - Run the Minio Container (minio) with the docker-compose up command. Example:

    + +
    docker-compose up -d minio
    +
    + +

    3 - Open your browser and visit the localhost on port 9000 at the following URL: http://localhost:9000

    + +

    4 - Create a bucket either through the webui or using the mc client:

    + +
      mc mb minio/bucket
    +
    + +

    5 - When configuring your other clients use the following details:

    + +
      S3_HOST=http://minio
    +  S3_KEY=access
    +  S3_SECRET=secretkey
    +  S3_REGION=us-east-1
    +  S3_BUCKET=bucket
    +
    +


    diff --git a/docs/documentation/index.xml b/docs/documentation/index.xml index 82df15f1..87655bfd 100644 --- a/docs/documentation/index.xml +++ b/docs/documentation/index.xml @@ -712,6 +712,36 @@ A package (<a href="https://github.com/duxet/laravel-rethinkdb">La <li>set the <code>DB_DATABASE</code> to <code>database</code>.</li> </ul> +<p><br> +<a name="Use-Minio"></a></p> + +<h2 id="use-minio">Use Minio</h2> + +<p>1 - Configure Minio: + - On the workspace container, change <code>INSTALL_MC</code> to true to get the client + - Set <code>MINIO_ACCESS_KEY</code> and <code>MINIO_ACCESS_SECRET</code> if you wish to set proper keys</p> + +<p>2 - Run the Minio Container (<code>minio</code>) with the <code>docker-compose up</code> command. Example:</p> + +<pre><code class="language-bash">docker-compose up -d minio +</code></pre> + +<p>3 - Open your browser and visit the localhost on port <strong>9000</strong> at the following URL: <code>http://localhost:9000</code></p> + +<p>4 - Create a bucket either through the webui or using the mc client:</p> + +<pre><code class="language-bash"> mc mb minio/bucket +</code></pre> + +<p>5 - When configuring your other clients use the following details:</p> + +<pre><code> S3_HOST=http://minio + S3_KEY=access + S3_SECRET=secretkey + S3_REGION=us-east-1 + S3_BUCKET=bucket +</code></pre> + <p><br> <a name="CodeIgniter"></a></p> diff --git a/docs/getting-started/index.html b/docs/getting-started/index.html index 6f0e0ff8..753a995a 100644 --- a/docs/getting-started/index.html +++ b/docs/getting-started/index.html @@ -10,7 +10,7 @@ Getting Started - Laradock Docs - + diff --git a/docs/help/index.html b/docs/help/index.html index 724889dd..650f7ff6 100644 --- a/docs/help/index.html +++ b/docs/help/index.html @@ -10,7 +10,7 @@ Help & Questions - Laradock Docs - + diff --git a/docs/index.html b/docs/index.html index f5cc01f6..4b3023e7 100644 --- a/docs/index.html +++ b/docs/index.html @@ -9,8 +9,8 @@ - Laradock Docs - + Welcome - Laradock Docs + @@ -69,9 +69,6 @@ - - - @@ -100,7 +97,7 @@
    - Laradock Docs + Welcome
    @@ -328,1725 +325,8 @@
    - -

    Introduction

    +

    Welcome

    - - -

    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…).

    - -

    Quick Overview

    - -

    Let’s see how easy it is to install NGINX, PHP, Composer, MySQL, Redis and beanstalkd:

    - -

    1 - Clone LaraDock inside your PHP project:

    - -
    git clone https://github.com/Laradock/laradock.git
    -
    - -

    2 - Enter the laradock folder and run this command:

    - -
    docker-compose up -d nginx mysql redis beanstalkd
    -
    - -

    3 - Open your .env file and set the following:

    - -
    DB_HOST=mysql
    -REDIS_HOST=redis
    -QUEUE_HOST=beanstalkd
    -
    - -

    4 - Open your browser and visit localhost: http://localhost.

    - -
    That's it! enjoy :)
    -
    - -

    - -

    What is Docker?

    - -

    Docker 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 on Linux, Mac OS and Windows.

    - -

    - -

    Why Docker not Vagrant!?

    - -

    Vagrant 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).

    - -

    - -

    LaraDock VS Homestead (For Laravel Developers)

    - -
    -

    LaraDock It’s like Laravel Homestead but for Docker instead of Vagrant.

    -
    - -

    LaraDock and 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.

    - -

    - -

    Demo Video

    - -

    What’s better than a Demo Video:

    - - - -

    - -

    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..
    • -
    - -

    - -

    Supported Software (Containers)

    - -
      -
    • Database Engines: - -
        -
      • MySQL
      • -
      • PostgreSQL
      • -
      • MariaDB
      • -
      • MongoDB
      • -
      • Neo4j
      • -
      • RethinkDB
      • -
    • -
    • 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
      • -
      • PgAdmin
      • -
      • ElasticSearch
      • -
      • Selenium
      • -
      • 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 :)

    -
    - -

    - -

    Chat with us

    - -

    You are welcome to join our chat room on Gitter.

    - -

    Gitter

    - - -

    Getting Started

    - - - -

    Requirements

    - - - -

    Installation

    - -

    Choose the setup the best suits your needs.

    - -

    A) Setup for Single Project:

    - -

    (In case you want a Docker environment for each project)

    - -
    A.1) Setup environment in existing Project:
    - -

    (In case you already have a project, and you want to setup an environment to run it)

    - -

    1 - Clone this repository on your project root directory:

    - -
    git submodule add https://github.com/Laradock/laradock.git
    -
    - -

    Note 1: If you are not yet using Git for your PHP project, you can use git clone https://github.com/Laradock/laradock.git instead.

    - -

    Note 2: To keep track of your LaraDock changes, between your projects and also keep LaraDock updated. Check this

    - -

    Note 3: In this case the folder structure will be like this:

    - -
    - project1
    -	- laradock
    -- project2
    -	- laradock
    -
    - -
    A.2) Setup environment first then create project:
    - -

    (In case you don’t have a project, and you want to create your project inside the Docker environment)

    - -

    1 - Clone this repository anywhere on your machine:

    - -
    git clone https://github.com/laradock/laradock.git
    -
    - -

    Note: In this case the folder structure will be like this:

    - -
    - projects
    -	- laradock
    -	- myProject
    -
    - -

    2 - Edit the docker-compose.yml file to map to your project directory once you have it (example: - ../myProject:/var/www).

    - -

    3 - Stop and re-run your docker-compose command for the changes to take place.

    - -
    docker-compose stop && docker-compose up -d XXXX YYYY ZZZZ ....
    -
    - -

    B) Setup for Multiple Projects:

    - -

    1 - Clone this repository anywhere on your machine:

    - -
    git clone https://github.com/laradock/laradock.git
    -
    - -

    2 - Edit the docker-compose.yml file to map to your projects directories:

    - -
        applications:
    -        image: tianon/true
    -        volumes:
    -            - ../project1/:/var/www/project1
    -            - ../project2/:/var/www/project2
    -
    - -

    3 - You can access all sites by visiting http://localhost/project1/public and http://localhost/project2/public but of course that’s not very useful so let’s setup NGINX quickly.

    - -

    4 - Go to nginx/sites and copy sample.conf.example to project1.conf then to project2.conf

    - -

    5 - Open the project1.conf file and edit the server_name and the root as follow:

    - -
        server_name project1.dev;
    -    root /var/www/project1/public;
    -
    - -

    Do the same for each project project2.conf, project3.conf,…

    - -

    6 - Add the domains to the hosts files.

    - -
    127.0.0.1  project1.dev
    -
    - -

    7 - Create your project Databases. Right now you have to do it manually by entering your DB container, until we automate it soon.

    - -

    Usage

    - -

    Read Before starting:

    - -

    If you are using Docker Toolbox (VM), do one of the following:

    - - - -


    - -
    -

    Warning: If you used an older version of LaraDock it’s highly recommended to rebuild the containers you need to use see how you rebuild a container in order to prevent errors as much as possible.

    -
    - -


    - -

    1 - Run Containers: (Make sure you are in the laradock folder before running the docker-compose commands).

    - -

    Example: Running NGINX and MySQL:

    - -
    docker-compose up -d nginx mysql
    -
    - -

    Note: The workspace and php-fpm will run automatically in most of the cases, so no need to specify them in the up command. If you couldn’t find them running then you need specify them as follow: docker-compose up -d nginx php-fpm mysql workspace.

    - -

    You can select your own combination of Containers form the list below:

    - -

    nginx, hhvm, php-fpm, mysql, redis, postgres, mariadb, neo4j, mongo, apache2, caddy, memcached, beanstalkd, beanstalkd-console, rabbitmq, workspace, phpmyadmin, aerospike, pgadmin, elasticsearch, rethinkdb.

    - -


    -2 - Enter the Workspace container, to execute commands like (Artisan, Composer, PHPUnit, Gulp, …).

    - -
    docker-compose exec workspace bash
    -
    - -

    Alternatively, for Windows PowerShell users: execute the following command to enter any running container:

    - -
    docker exec -it {workspace-container-id} bash
    -
    - -

    Note: You can add --user=laradock (example docker-compose exec --user=laradock workspace bash) to have files created as your host’s user. (you can change the PUID (User id) and PGID (group id) variables from the docker-compose.yml).

    - -


    -3 - Edit your project configurations.

    - -

    Open your .env file and set the DB_HOST to mysql:

    - -
    DB_HOST=mysql
    -
    - -

    If you want to use Laravel and you don’t have it installed yet, see How to Install Laravel in a Docker Container.

    - -


    -4 - Open your browser and visit your localhost address (http://localhost/).

    - -


    -Debugging: if you are facing any problem here check the Debugging section.

    - -

    If you need a special support. Contact me, more details in the Help & Questions section.

    - - -

    Documentation

    - - - -

    - -

    List current running Containers

    - -
    docker ps
    -
    - -

    You can also use the following command if you want to see only this project containers:

    - -
    docker-compose ps
    -
    - -


    -

    - -

    Close all running Containers

    - -
    docker-compose stop
    -
    - -

    To stop single container do:

    - -
    docker-compose stop {container-name}
    -
    - -


    -

    - -

    Delete all existing Containers

    - -
    docker-compose down
    -
    - -


    -

    - -

    Enter a Container (run commands in a running Container)

    - -

    1 - First list the current running containers with docker ps

    - -

    2 - Enter any container using:

    - -
    docker-compose exec {container-name} bash
    -
    - -

    Example: enter MySQL container

    - -
    docker-compose exec mysql bash
    -
    - -

    Example: enter to MySQL prompt within MySQL container

    - -
    docker-compose exec mysql mysql -u homestead -psecret
    -
    - -

    3 - To exit a container, type exit.

    - -


    -

    - -

    Edit default container configuration

    - -

    Open the docker-compose.yml and change anything you want.

    - -

    Examples:

    - -

    Change MySQL Database Name:

    - -
        environment:
    -        MYSQL_DATABASE: laradock
    -    ...
    -
    - -

    Change Redis default port to 1111:

    - -
        ports:
    -        - "1111:6379"
    -    ...
    -
    - -


    -

    - -

    Edit a Docker Image

    - -

    1 - Find the Dockerfile of the image you want to edit, -
    -example for mysql it will be mysql/Dockerfile.

    - -

    2 - Edit the file the way you want.

    - -

    3 - Re-build the container:

    - -
    docker-compose build mysql
    -
    - -

    More info on Containers rebuilding here.

    - -


    -

    - -

    Build/Re-build Containers

    - -

    If you do any change to any Dockerfile make sure you run this command, for the changes to take effect:

    - -
    docker-compose build
    -
    - -

    Optionally you can specify which container to rebuild (instead of rebuilding all the containers):

    - -
    docker-compose build {container-name}
    -
    - -

    You might use the --no-cache option if you want full rebuilding (docker-compose build --no-cache {container-name}).

    - -


    -

    - -

    Add more Software (Docker Images)

    - -

    To add an image (software), just edit the docker-compose.yml and add your container details, to do so you need to be familiar with the docker compose file syntax.

    - -


    -

    - -

    View the Log files

    - -

    The NGINX Log file is stored in the logs/nginx directory.

    - -

    However to view the logs of all the other containers (MySQL, PHP-FPM,…) you can run this:

    - -
    docker logs {container-name}
    -
    - -


    -

    - -

    - -

    Install PHP Extensions

    - -

    Before installing PHP extensions, you have to decide whether you need for the FPM or CLI because each lives on a different container, if you need it for both you have to edit both containers.

    - -

    The PHP-FPM extensions should be installed in php-fpm/Dockerfile-XX. (replace XX with your default PHP version number). -
    -The PHP-CLI extensions should be installed in workspace/Dockerfile.

    - -


    -

    - -

    Change the (PHP-FPM) Version

    - -

    By default PHP-FPM 7.0 is running.

    - -
    -

    The PHP-FPM is responsible of serving your application code, you don’t have to change the PHP-CLI version if you are planning to run your application on different PHP-FPM version.

    -
    - -

    A) Switch from PHP 7.0 to PHP 5.6

    - -

    1 - Open the docker-compose.yml.

    - -

    2 - Search for Dockerfile-70 in the PHP container section.

    - -

    3 - Change the version number, by replacing Dockerfile-70 with Dockerfile-56, like this:

    - -
        php-fpm:
    -        build:
    -            context: ./php-fpm
    -            dockerfile: Dockerfile-70
    -    ...
    -
    - -

    4 - Finally rebuild the container

    - -
    docker-compose build php-fpm
    -
    - -
    -

    For more details about the PHP base image, visit the official PHP docker images.

    -
    - -

    B) Switch from PHP 7.0 or 5.6 to PHP 5.5

    - -

    We do not natively support PHP 5.5 anymore, but you can get it in few steps:

    - -

    1 - Clone https://github.com/laradock/php-fpm.

    - -

    3 - Rename Dockerfile-56 to Dockerfile-55.

    - -

    3 - Edit the file FROM php:5.6-fpm to FROM php:5.5-fpm.

    - -

    4 - Build an image from Dockerfile-55.

    - -

    5 - Open the docker-compose.yml file.

    - -

    6 - Point php-fpm to your Dockerfile-55 file.

    - -


    -

    - -

    Change the PHP-CLI Version

    - -

    By default PHP-CLI 7.0 is running.

    - -
    -

    Note: it’s not very essential to edit the PHP-CLI version. The PHP-CLI is only used for the Artisan Commands & Composer. It doesn’t serve your Application code, this is the PHP-FPM job.

    -
    - -

    The PHP-CLI is installed in the Workspace container. To change the PHP-CLI version you need to edit the workspace/Dockerfile.

    - -

    Right now you have to manually edit the Dockerfile or create a new one like it’s done for the PHP-FPM. (consider contributing).

    - -


    -

    - -

    Install xDebug

    - -

    1 - First install xDebug in the Workspace and the PHP-FPM Containers: -
    -a) open the docker-compose.yml file -
    -b) search for the INSTALL_XDEBUG argument under the Workspace Container -
    -c) set it to true -
    -d) search for the INSTALL_XDEBUG argument under the PHP-FPM Container -
    -e) set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_XDEBUG=true
    -    ...
    -    php-fpm:
    -        build:
    -            context: ./php-fpm
    -            args:
    -                - INSTALL_XDEBUG=true
    -    ...
    -
    - -

    2 - Re-build the containers docker-compose build workspace php-fpm

    - -

    3 - Open laradock/workspace/xdebug.ini and/or laradock/php-fpm/xdebug.ini and enable at least the following configurations:

    - -
    xdebug.remote_autostart=1
    -xdebug.remote_enable=1
    -xdebug.remote_connect_back=1
    -
    - -

    For information on how to configure xDebug with your IDE and work it out, check this Repository.

    - -


    -

    - -

    Start/Stop xDebug:

    - -

    By installing xDebug, you are enabling it to run on startup by default.

    - -

    To control the behavior of xDebug (in the php-fpm Container), you can run the following commands from the LaraDock root folder, (at the same prompt where you run docker-compose):

    - -
      -
    • Stop xDebug from running by default: ./xdebugPhpFpm stop.
    • -
    • Start xDebug by default: ./xdebugPhpFpm start.
    • -
    • See the status: ./xdebugPhpFpm status.
    • -
    - -

    Note: If ./xdebugPhpFpm doesn’t execute and gives Permission Denied error the problem can be that file xdebugPhpFpm doesn’t have execution access. This can be fixed by running chmod command with desired access permissions.

    - -


    -

    - -

    Install Deployer (Deployment tool for PHP)

    - -

    1 - Open the docker-compose.yml file -
    -2 - Search for the INSTALL_DEPLOYER argument under the Workspace Container -
    -3 - Set it to true -

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_DEPLOYER=true
    -    ...
    -
    - -

    4 - Re-build the containers docker-compose build workspace

    - -

    Deployer Documentation Here

    - -


    -

    - -


    -

    - -

    Prepare LaraDock for Production

    - -

    It’s recommended for production to create a custom docker-compose.yml file. For that reason, LaraDock is shipped with production-docker-compose.yml which should contain only the containers you are planning to run on production (usage example: docker-compose -f production-docker-compose.yml up -d nginx mysql redis ...).

    - -

    Note: The Database (MySQL/MariaDB/…) ports should not be forwarded on production, because Docker will automatically publish the port on the host, which is quite insecure, unless specifically told not to. So make sure to remove these lines:

    - -
    ports:
    -    - "3306:3306"
    -
    - -

    To learn more about how Docker publishes ports, please read this excellent post on the subject.

    - -


    -

    - -

    Setup Laravel and Docker on Digital Ocean

    - -

    Full Guide Here

    - -


    -

    - -

    - -

    Install Laravel from a Docker Container

    - -

    1 - First you need to enter the Workspace Container.

    - -

    2 - Install Laravel.

    - -

    Example using Composer

    - -
    composer create-project laravel/laravel my-cool-app "5.2.*"
    -
    - -
    -

    We recommend using composer create-project instead of the Laravel installer, to install Laravel.

    -
    - -

    For more about the Laravel installation click here.

    - -

    3 - Edit docker-compose.yml to Map the new application path:

    - -

    By default, LaraDock assumes the Laravel application is living in the parent directory of the laradock folder.

    - -

    Since the new Laravel application is in the my-cool-app folder, we need to replace ../:/var/www with ../my-cool-app/:/var/www, as follow:

    - -
        application:
    -		 image: tianon/true
    -        volumes:
    -            - ../my-cool-app/:/var/www
    -    ...
    -
    - -

    4 - Go to that folder and start working..

    - -
    cd my-cool-app
    -
    - -

    5 - Go back to the LaraDock installation steps to see how to edit the .env file.

    - -


    -

    - -

    Run Artisan Commands

    - -

    You can run artisan commands and many other Terminal commands from the Workspace container.

    - -

    1 - Make sure you have the workspace container running.

    - -
    docker-compose up -d workspace // ..and all your other containers
    -
    - -

    2 - Find the Workspace container name:

    - -
    docker-compose ps
    -
    - -

    3 - Enter the Workspace container:

    - -
    docker-compose exec workspace bash
    -
    - -

    Add --user=laradock (example docker-compose exec --user=laradock workspace bash) to have files created as your host’s user.

    - -

    4 - Run anything you want :)

    - -
    php artisan
    -
    - -
    Composer update
    -
    - -
    phpunit
    -
    - -


    -

    - -

    Run Laravel Queue Worker

    - -

    1 - First add php-worker container. It will be similar as like PHP-FPM Container. -
    -a) open the docker-compose.yml file -
    -b) add a new service container by simply copy-paste this section below PHP-FPM container

    - -
        php-worker:
    -      build:
    -        context: ./php-fpm
    -        dockerfile: Dockerfile-70 # or Dockerfile-56, choose your PHP-FPM container setting
    -      volumes_from:
    -        - applications
    -      command: php artisan queue:work
    -
    - -

    2 - Start everything up

    - -
    docker-compose up -d php-worker
    -
    - -


    -

    - -

    Use Redis

    - -

    1 - First make sure you run the Redis Container (redis) with the docker-compose up command.

    - -
    docker-compose up -d redis
    -
    - -

    2 - Open your Laravel’s .env file and set the REDIS_HOST to redis

    - -
    REDIS_HOST=redis
    -
    - -

    If you don’t find the REDIS_HOST variable in your .env file. Go to the database configuration file config/database.php and replace the default 127.0.0.1 IP with redis for Redis like this:

    - -
    'redis' => [
    -    'cluster' => false,
    -    'default' => [
    -        'host'     => 'redis',
    -        'port'     => 6379,
    -        'database' => 0,
    -    ],
    -],
    -
    - -

    3 - To enable Redis Caching and/or for Sessions Management. Also from the .env file set CACHE_DRIVER and SESSION_DRIVER to redis instead of the default file.

    - -
    CACHE_DRIVER=redis
    -SESSION_DRIVER=redis
    -
    - -

    4 - Finally make sure you have the predis/predis package (~1.0) installed via Composer:

    - -
    composer require predis/predis:^1.0
    -
    - -

    5 - You can manually test it from Laravel with this code:

    - -
    \Cache::store('redis')->put('LaraDock', 'Awesome', 10);
    -
    - -


    -

    - -

    Use Mongo

    - -

    1 - First install mongo in the Workspace and the PHP-FPM Containers: -
    -a) open the docker-compose.yml file -
    -b) search for the INSTALL_MONGO argument under the Workspace Container -
    -c) set it to true -
    -d) search for the INSTALL_MONGO argument under the PHP-FPM Container -
    -e) set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_MONGO=true
    -    ...
    -    php-fpm:
    -        build:
    -            context: ./php-fpm
    -            args:
    -                - INSTALL_MONGO=true
    -    ...
    -
    - -

    2 - Re-build the containers docker-compose build workspace php-fpm

    - -

    3 - Run the MongoDB Container (mongo) with the docker-compose up command.

    - -
    docker-compose up -d mongo
    -
    - -

    4 - Add the MongoDB configurations to the config/database.php configuration file:

    - -
    'connections' => [
    -
    -    'mongodb' => [
    -        'driver'   => 'mongodb',
    -        'host'     => env('DB_HOST', 'localhost'),
    -        'port'     => env('DB_PORT', 27017),
    -        'database' => env('DB_DATABASE', 'database'),
    -        'username' => '',
    -        'password' => '',
    -        'options'  => [
    -            'database' => '',
    -        ]
    -    ],
    -
    -	// ...
    -
    -],
    -
    - -

    5 - Open your Laravel’s .env file and update the following variables:

    - -
      -
    • set the DB_HOST to your mongo.
    • -
    • set the DB_PORT to 27017.
    • -
    • set the DB_DATABASE to database.
    • -
    - -

    6 - Finally make sure you have the jenssegers/mongodb package installed via Composer and its Service Provider is added.

    - -
    composer require jenssegers/mongodb
    -
    - -

    More details about this here.

    - -

    7 - Test it:

    - -
      -
    • First let your Models extend from the Mongo Eloquent Model. Check the documentation.
    • -
    • Enter the Workspace Container.
    • -
    • Migrate the Database php artisan migrate.
    • -
    - -


    -

    - -

    Use PhpMyAdmin

    - -

    1 - Run the phpMyAdmin Container (phpmyadmin) with the docker-compose up command. Example:

    - -
    # use with mysql
    -docker-compose up -d mysql phpmyadmin
    -
    -# use with mariadb
    -docker-compose up -d mariadb phpmyadmin
    -
    - -

    2 - Open your browser and visit the localhost on port 8080: http://localhost:8080

    - -


    -

    - -

    Use PgAdmin

    - -

    1 - Run the pgAdmin Container (pgadmin) with the docker-compose up command. Example:

    - -
    docker-compose up -d postgres pgadmin
    -
    - -

    2 - Open your browser and visit the localhost on port 5050: http://localhost:5050

    - -


    -

    - -

    Use Beanstalkd

    - -

    1 - Run the Beanstalkd Container:

    - -
    docker-compose up -d beanstalkd
    -
    - -

    2 - Configure Laravel to connect to that container by editing the config/queue.php config file.

    - -

    a. first set beanstalkd as default queue driver -b. set the queue host to beanstalkd : QUEUE_HOST=beanstalkd

    - -

    beanstalkd is now available on default port 11300.

    - -

    3 - Require the dependency package pda/pheanstalk using composer.

    - -

    Optionally you can use the Beanstalkd Console Container to manage your Queues from a web interface.

    - -

    1 - Run the Beanstalkd Console Container:

    - -
    docker-compose up -d beanstalkd-console
    -
    - -

    2 - Open your browser and visit http://localhost:2080/

    - -

    3 - Add the server

    - -
      -
    • Host: beanstalkd
    • -
    • Port: 11300
    • -
    - -

    4 - Done.

    - -


    -

    - -

    Use ElasticSearch

    - -

    1 - Run the ElasticSearch Container (elasticsearch) with the docker-compose up command:

    - -
    docker-compose up -d elasticsearch
    -
    - -

    2 - Open your browser and visit the localhost on port 9200: http://localhost:9200

    - -

    Install ElasticSearch Plugin

    - -

    1 - Install the ElasticSearch plugin like delete-by-query.

    - -
    docker exec {container-name} /usr/share/elasticsearch/bin/plugin install delete-by-query
    -
    - -

    2 - Restart elasticsearch container

    - -
    docker restart {container-name}
    -
    - -


    -

    - -

    Use Selenium

    - -

    1 - Run the Selenium Container (selenium) with the docker-compose up command. Example:

    - -
    docker-compose up -d selenium
    -
    - -

    2 - Open your browser and visit the localhost on port 4444 at the following URL: http://localhost:4444/wd/hub

    - -


    -

    - -

    Use RethinkDB

    - -

    The RethinkDB is an open-source Database for Real-time Web (RethinkDB). -A package (Laravel RethinkDB) is being developed and was released a version for Laravel 5.2 (experimental).

    - -

    1 - Run the RethinkDB Container (rethinkdb) with the docker-compose up command.

    - -
    docker-compose up -d rethinkdb
    -
    - -

    2 - Access the RethinkDB Administration Console http://localhost:8090/#tables for create a database called database.

    - -

    3 - Add the RethinkDB configurations to the config/database.php configuration file:

    - -
    'connections' => [
    -
    -	'rethinkdb' => [
    -		'name'      => 'rethinkdb',
    -		'driver'    => 'rethinkdb',
    -		'host'      => env('DB_HOST', 'rethinkdb'),
    -		'port'      => env('DB_PORT', 28015),
    -		'database'  => env('DB_DATABASE', 'test'),
    -	]
    -
    -	// ...
    -
    -],
    -
    - -

    4 - Open your Laravel’s .env file and update the following variables:

    - -
      -
    • set the DB_CONNECTION to your rethinkdb.
    • -
    • set the DB_HOST to rethinkdb.
    • -
    • set the DB_PORT to 28015.
    • -
    • set the DB_DATABASE to database.
    • -
    - -


    -

    - -


    -

    - -

    Install CodeIgniter

    - -

    To install CodeIgniter 3 on LaraDock all you have to do is the following simple steps:

    - -

    1 - Open the docker-compose.yml file.

    - -

    2 - Change CODEIGNITER=false to CODEIGNITER=true.

    - -

    3 - Re-build your PHP-FPM Container docker-compose build php-fpm.

    - -


    -

    - -

    Miscellaneous

    - -


    -

    - -

    Change the timezone

    - -

    To change the timezone for the workspace container, modify the TZ build argument in the Docker Compose file to one in the TZ database.

    - -

    For example, if I want the timezone to be New York:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - TZ=America/New_York
    -    ...
    -
    - -

    We also recommend setting the timezone in Laravel.

    - -


    -

    - -

    Adding cron jobs

    - -

    You can add your cron jobs to workspace/crontab/root after the php artisan line.

    - -
    * * * * * php /var/www/artisan schedule:run >> /dev/null 2>&1
    -
    -# Custom cron
    -* * * * * root echo "Every Minute" > /var/log/cron.log 2>&1
    -
    - -

    Make sure you change the timezone if you don’t want to use the default (UTC).

    - -


    -

    - -

    Access workspace via ssh

    - -

    You can access the workspace container through localhost:2222 by setting the INSTALL_WORKSPACE_SSH build argument to true.

    - -

    To change the default forwarded port for ssh:

    - -
        workspace:
    -		ports:
    -			- "2222:22" # Edit this line
    -    ...
    -
    - -


    -

    - -

    MySQL access from host

    - -

    You can forward the MySQL/MariaDB port to your host by making sure these lines are added to the mysql or mariadb section of the docker-compose.yml or in your environment specific Compose file.

    - -
    ports:
    -    - "3306:3306"
    -
    - -


    -

    - -

    MySQL root access

    - -

    The default username and password for the root MySQL user are root and root.

    - -

    1 - Enter the MySQL container: docker-compose exec mysql bash.

    - -

    2 - Enter mysql: mysql -uroot -proot for non root access use mysql -uhomestead -psecret.

    - -

    3 - See all users: SELECT User FROM mysql.user;

    - -

    4 - Run any commands show databases, show tables, select * from......

    - -


    -

    - -

    Change MySQL port

    - -

    Modify the mysql/my.cnf file to set your port number, 1234 is used as an example.

    - -
    [mysqld]
    -port=1234
    -
    - -

    If you need MySQL access from your host, do not forget to change the internal port number ("3306:3306" -> "3306:1234") in the docker-compose configuration file.

    - -


    -

    - -

    Use custom Domain (instead of the Docker IP)

    - -

    Assuming your custom domain is laravel.dev

    - -

    1 - Open your /etc/hosts file and map your localhost address 127.0.0.1 to the laravel.dev domain, by adding the following:

    - -
    127.0.0.1    laravel.dev
    -
    - -

    2 - Open your browser and visit {http://laravel.dev}

    - -

    Optionally you can define the server name in the NGINX configuration file, like this:

    - -
    server_name laravel.dev;
    -
    - -


    -

    - -

    Enable Global Composer Build Install

    - -

    Enabling Global Composer Install during the build for the container allows you to get your composer requirements installed and available in the container after the build is done.

    - -

    1 - Open the docker-compose.yml file

    - -

    2 - Search for the COMPOSER_GLOBAL_INSTALL argument under the Workspace Container and set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - COMPOSER_GLOBAL_INSTALL=true
    -    ...
    -
    - -

    3 - Now add your dependencies to workspace/composer.json

    - -

    4 - Re-build the Workspace Container docker-compose build workspace

    - -


    -

    - -

    Install Prestissimo

    - -

    Prestissimo is a plugin for composer which enables parallel install functionality.

    - -

    1 - Enable Running Global Composer Install during the Build:

    - -

    Click on this Enable Global Composer Build Install and do steps 1 and 2 only then continue here.

    - -

    2 - Add prestissimo as requirement in Composer:

    - -

    a - Now open the workspace/composer.json file

    - -

    b - Add "hirak/prestissimo": "^0.3" as requirement

    - -

    c - Re-build the Workspace Container docker-compose build workspace

    - -


    -

    - -

    Install Node + NVM

    - -

    To install NVM and NodeJS in the Workspace container

    - -

    1 - Open the docker-compose.yml file

    - -

    2 - Search for the INSTALL_NODE argument under the Workspace Container and set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_NODE=true
    -    ...
    -
    - -

    3 - Re-build the container docker-compose build workspace

    - -


    -

    - -

    Install Node + YARN

    - -

    Yarn is a new package manager for JavaScript. It is so faster than npm, which you can find here.To install NodeJS and Yarn in the Workspace container:

    - -

    1 - Open the docker-compose.yml file

    - -

    2 - Search for the INSTALL_NODE and INSTALL_YARN argument under the Workspace Container and set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_NODE=true
    -                - INSTALL_YARN=true
    -    ...
    -
    - -

    3 - Re-build the container docker-compose build workspace

    - -


    -

    - -

    Install Linuxbrew

    - -

    Linuxbrew is a package manager for Linux. It is the Linux version of MacOS Homebrew and can be found here. To install Linuxbrew in the Workspace container:

    - -

    1 - Open the docker-compose.yml file

    - -

    2 - Search for the INSTALL_LINUXBREW argument under the Workspace Container and set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_LINUXBREW=true
    -    ...
    -
    - -

    3 - Re-build the container docker-compose build workspace

    - -


    - -

    - -

    Common Terminal Aliases

    - -

    When you start your docker container, LaraDock will copy the aliases.sh file located in the laradock/workspace directory and add sourcing to the container ~/.bashrc file.

    - -

    You are free to modify the aliases.sh as you see fit, adding your own aliases (or function macros) to suit your requirements.

    - -


    -

    - -

    Install Aerospike extension

    - -

    1 - First install aerospike in the Workspace and the PHP-FPM Containers: -
    -a) open the docker-compose.yml file -
    -b) search for the INSTALL_AEROSPIKE_EXTENSION argument under the Workspace Container -
    -c) set it to true -
    -d) search for the INSTALL_AEROSPIKE_EXTENSION argument under the PHP-FPM Container -
    -e) set it to true

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_AEROSPIKE_EXTENSION=true
    -    ...
    -    php-fpm:
    -        build:
    -            context: ./php-fpm
    -            args:
    -                - INSTALL_AEROSPIKE_EXTENSION=true
    -    ...
    -
    - -

    2 - Re-build the containers docker-compose build workspace php-fpm

    - -


    -

    - -

    Install Laravel Envoy (Envoy Task Runner)

    - -

    1 - Open the docker-compose.yml file -
    -2 - Search for the INSTALL_LARAVEL_ENVOY argument under the Workspace Container -
    -3 - Set it to true -

    - -

    It should be like this:

    - -
        workspace:
    -        build:
    -            context: ./workspace
    -            args:
    -                - INSTALL_LARAVEL_ENVOY=true
    -    ...
    -
    - -

    4 - Re-build the containers docker-compose build workspace

    - -

    Laravel Envoy Documentation Here

    - -


    -

    - -

    PHPStorm Debugging Guide

    - -

    Remote debug Laravel web and phpunit tests.

    - -

    Debugging Guide Here

    - -


    -

    - -

    Keep track of your LaraDock changes

    - -
      -
    1. Fork the LaraDock repository.
    2. -
    3. Use that fork as a submodule.
    4. -
    5. Commit all your changes to your fork.
    6. -
    7. Pull new stuff from the main repository from time to time.
    8. -
    - -


    -

    - -

    Upgrading LaraDock

    - -

    Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requires upgrading LaraDock from v3.* to v4.*:

    - -
      -
    1. Stop the docker VM docker-machine stop {default}
    2. -
    3. Install Docker for Mac or Windows.
    4. -
    5. Upgrade LaraDock to v4.*.* (git pull origin master)
    6. -
    7. Use LaraDock as you used to do: docker-compose up -d nginx mysql.
    8. -
    - -

    Note: If you face any problem with the last step above: rebuild all your containers -docker-compose build --no-cache -“Warning Containers Data might be lost!”

    - -


    -

    - -

    Improve speed on MacOS

    - -

    Sharing code into Docker containers with osxfs have very poor performance compared to Linux. You can get around this issue by using NFS to share your files betwen your host and your container.

    - -
    -

    How to share files using NFS (d4m-nfs)

    -
    - -

    d4m-nfs automatically mount NFS volume instead of osxfs one.

    - -

    1) Update the Docker [File Sharing] preferences:

    - -

    Click on the Docker Icon > Preferences > (remove everything form the list except /tmp).

    - -

    2) Restart Docker.

    - -

    3) Clone the d4m-nfs repository to your home directory.

    - -
    git clone https://github.com/IFSight/d4m-nfs ~/d4m-nfs
    -
    - -

    4) Create (or edit) the file ~/d4m-nfs/etc/d4m-nfs-mounts.txt, and write the follwing configuration in it:

    - -
    /Users:/Users
    -/Volumes:/Volumes
    -/private:/private
    -
    - -

    5) Create (or edit) the file /etc/exports, make sure it exists and is empty. (There may be collisions if you come from Vagrant or if you already executed the d4m-nfs.sh script before).

    - -

    6) Run the d4m-nfs.sh script:

    - -
    ~/d4m-nfs/d4m-nfs.sh
    -
    - -

    That’s it! Run your containers.. Example:

    - -
    docker-compose up -d nginx mysql
    -
    - -

    Note: If you faced any errors, try restarting Docker, and make sure you have no spaces in the d4m-nfs-mounts.txt file, and your /etc/exports file is clear.

    - -


    -

    - -

    Common Problems

    - -

    Here’s a list of the common problems you might face, and the possible solutions.

    - -


    - -

    I see a blank (white) page instead of the Laravel ‘Welcome’ page!

    - -

    Run the following command from the Laravel root directory:

    - -
    sudo chmod -R 777 storage bootstrap/cache
    -
    - -


    - -

    I see “Welcome to nginx” instead of the Laravel App!

    - -

    Use http://127.0.0.1 instead of http://localhost in your browser.

    - -


    - -

    I see an error message containing address already in use or port is already allocated

    - -

    Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in apache/httpd service or other development tools you have installed.

    - -


    - -

    I get NGINX error 404 Not Found on Windows.

    - -
      -
    1. Go to docker Settings on your Windows machine.
    2. -
    3. Click on the Shared Drives tab and check the drive that contains your project files.
    4. -
    5. Enter your windows username and password.
    6. -
    7. Go to the reset tab and click restart docker.
    8. -
    - -


    - -

    The time in my services does not match the current time

    - -
      -
    1. Make sure you’ve changed the timezone.
    2. -
    3. Stop and rebuild the containers (docker-compose up -d --build <services>)
    4. -
    - -


    - -

    I get MySQL connection refused

    - -

    This error sometimes happens because your Laravel application isn’t running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:

    - -
      -
    • Option A - -
        -
      1. Check your running Laravel application IP by dumping Request::ip() variable using dd(Request::ip()) anywhere on your application. The result is the IP of your Laravel container.
      2. -
      3. Change the DB_HOST variable on env with the IP that you received from previous step.
      4. -
    • -
    • Option B - -
        -
      1. Change the DB_HOST value to the same name as the MySQL docker container. The LaraDock docker-compose file currently has this as mysql
      2. -
    • -
    - - -

    Related Projects

    - -

    LaraDock related projects:

    - - - -

    If you want your project listed here, please open an issue.

    - - -

    Help & Questions

    - -

    Join the chat room on Gitter and get help and support from the community.

    - -

    You can as well can open an issue on Github (will be labeled as Question) and discuss it with people on Gitter.

    - - -

    Contributing

    - - - -

    Your contribution is more than welcome.

    - -

    Got a Question or Problem?

    - -

    If you have questions about how to use LaraDock, please direct your questions to the discussion on Gitter. If you believe your question could help others, then consider opening an Issue (it will be labeled as Question).

    - -

    Found an Issue?

    - -

    If you find a bug in the source code or a mistake in the documentation, you can help us by -submitting an Issue. Even better you can submit a Pull Request with a fix.

    - -

    Want a Feature?

    - -

    You can request a new feature by submitting an Issue (it will be labeled as Feature Suggestion). If you would like to implement a new feature then consider submitting a Pull Request.

    - -

    Edit the documentation

    - -

    Laradock uses Hugo as website generator tool, with the Material Docs theme. You might need to check their docs quickly.

    - -
      -
    1. Install Hugo on your machine.
    2. -
    3. Clone laradock.
    4. -
    5. Go to /docs.
    6. -
    7. Delete everything except the _settings folder & the CNAME file.
    8. -
    9. Open docs/_settings from your terminal and run hugo serve to host the website locally.
    10. -
    11. Open the docs/_settings/content and search for the folder of the section you want to edit.
    12. -
    13. In each secion there’s an index.md file, that’s the file you need to edit.
    14. -
    15. To edit the sidebar (in case you are adding new section) go to docs/_settings/config.toml and add the section there.
    16. -
    17. After done editing, run the this command hugo to generate the updated site inside the docs folder.
    18. -
    19. Go back to the project root directory, commit and push..
    20. -
    - -

    Coding Guidelines

    - -

    Support new Software

    - -
      -
    • Create folder with the software name.

    • - -
    • Add a Dockerfile, write your code there.

    • - -
    • You may add additional files in the software folder.

    • - -
    • Add the software to the docker-compose.yml file.

    • - -
    • Make sure you follow our commenting style.

    • - -
    • Add the software in the Readme.

    • -
    - -

    Edit existing Software

    - -
      -
    • Open the software (container) folder.

    • - -
    • Edit the files you want to update.

    • - -
    • Note: If you want to edit the base image of the Workspace or the php-fpm Containers, -you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.

    • - -
    • Make sure to update the Readme in case you made any changes.

    • -
    - -

    Issue/PR Submission Guidelines

    - -

    Submitting an Issue

    - -

    Before you submit your issue search the archive, maybe your question was already answered.

    - -

    If your issue appears to be a bug, and hasn’t been reported, open a new issue. -Help us to maximize the effort we can spend fixing issues and adding new -features, by not reporting duplicate issues.

    - -

    Before Submitting a Pull Request (PR)

    - -

    Always Test everything and make sure its working:

    - -
      -
    • Pull the latest updates (or fork of you don’t have permission)
    • -
    • Before editing anything: - -
        -
      • Test building the container (docker-compose build –no-cache container-name) build with no cache first.
      • -
      • Test running the container with some other containers in real app and see of everything is working fine.
      • -
    • -
    • Now edit the container (edit section by section and test rebuilding the container after every edited section) - -
        -
      • Testing building the container (docker-compose build container-name) with no errors.
      • -
      • Test it in real App.
      • -
    • -
    - -

    Submitting a PR

    - -

    Consider the following guidelines:

    - -
      -
    • Search GitHub for an open or closed Pull Request that relates to your submission. You don’t want to duplicate effort.

    • - -
    • Make your changes in a new git branch:

      - -
       git checkout -b my-fix-branch master
      -
    • - -
    • Commit your changes using a descriptive commit message.

    • - -
    • Push your branch to GitHub:

      - -
      git push origin my-fix-branch
      -
    • - -
    • In GitHub, send a pull request to laradock:master.

    • - -
    • If we suggest changes then:

      - -
        -
      • Make the required updates.
      • -
      • Commit your changes to your branch (e.g. my-fix-branch).
      • -
      • Push the changes to your GitHub repository (this will update your Pull Request).
      • -
    • -
    - -
    -

    If the PR gets too outdated we may ask you to rebase and force push to update the PR:

    -
    - -
    git rebase master -i
    -git push origin my-fix-branch -f
    -
    - -

    WARNING. Squashing or reverting commits and forced push thereafter may remove GitHub comments on code that were previously made by you and others in your commits.

    - -

    After your PR is merged

    - -

    After your pull request is merged, you can safely delete your branch and pull the changes -from the main (upstream) repository:

    - -
      -
    • Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:

      - -
      git push origin --delete my-fix-branch
      -
    • - -
    • Check out the master branch:

      - -
      git checkout master -f
      -
    • - -
    • Delete the local branch:

      - -
      git branch -D my-fix-branch
      -
    • - -
    • Update your master with the latest upstream version:

      - -
      git pull --ff upstream master
      -
    • -
    - -


    - -

    Happy Coding :)

    - - -

    License

    - -

    MIT License (MIT)

    - - -

    Welcome

    - -
    diff --git a/docs/index.xml b/docs/index.xml index d40e43a6..20a68913 100644 --- a/docs/index.xml +++ b/docs/index.xml @@ -167,6 +167,7 @@ QUEUE_HOST=beanstalkd <li>PgAdmin</li> <li>ElasticSearch</li> <li>Selenium</li> +<li>Minio</li> <li>Workspace <ul> @@ -1072,6 +1073,36 @@ A package (<a href="https://github.com/duxet/laravel-rethinkdb">La <li>set the <code>DB_DATABASE</code> to <code>database</code>.</li> </ul> +<p><br> +<a name="Use-Minio"></a></p> + +<h2 id="use-minio">Use Minio</h2> + +<p>1 - Configure Minio: + - On the workspace container, change <code>INSTALL_MC</code> to true to get the client + - Set <code>MINIO_ACCESS_KEY</code> and <code>MINIO_ACCESS_SECRET</code> if you wish to set proper keys</p> + +<p>2 - Run the Minio Container (<code>minio</code>) with the <code>docker-compose up</code> command. Example:</p> + +<pre><code class="language-bash">docker-compose up -d minio +</code></pre> + +<p>3 - Open your browser and visit the localhost on port <strong>9000</strong> at the following URL: <code>http://localhost:9000</code></p> + +<p>4 - Create a bucket either through the webui or using the mc client:</p> + +<pre><code class="language-bash"> mc mb minio/bucket +</code></pre> + +<p>5 - When configuring your other clients use the following details:</p> + +<pre><code> S3_HOST=http://minio + S3_KEY=access + S3_SECRET=secretkey + S3_REGION=us-east-1 + S3_BUCKET=bucket +</code></pre> + <p><br> <a name="CodeIgniter"></a></p> diff --git a/docs/introduction/index.html b/docs/introduction/index.html index 497148e2..862e0119 100644 --- a/docs/introduction/index.html +++ b/docs/introduction/index.html @@ -10,7 +10,7 @@ Introduction - Laradock Docs - + @@ -483,6 +483,7 @@ QUEUE_HOST=beanstalkd
  • PgAdmin
  • ElasticSearch
  • Selenium
  • +
  • Minio
  • Workspace
      diff --git a/docs/introduction/index.xml b/docs/introduction/index.xml index f6f3263e..56e7f89c 100644 --- a/docs/introduction/index.xml +++ b/docs/introduction/index.xml @@ -167,6 +167,7 @@ QUEUE_HOST=beanstalkd <li>PgAdmin</li> <li>ElasticSearch</li> <li>Selenium</li> +<li>Minio</li> <li>Workspace <ul> diff --git a/docs/license/index.html b/docs/license/index.html index 7501cb72..2e84206a 100644 --- a/docs/license/index.html +++ b/docs/license/index.html @@ -10,7 +10,7 @@ License - Laradock Docs - + diff --git a/docs/related-projects/index.html b/docs/related-projects/index.html index 25872d24..dcf527d6 100644 --- a/docs/related-projects/index.html +++ b/docs/related-projects/index.html @@ -10,7 +10,7 @@ Related Projects - Laradock Docs - + From c63bf5ea07db7f3165e11823abdc10f14f5f16b6 Mon Sep 17 00:00:00 2001 From: Thor Erik Lie Date: Sun, 5 Mar 2017 15:07:29 +0100 Subject: [PATCH 4/7] Revert "Docs updated" This reverts commit d95b52b7dbce3e4447607125d6e4fbd4e076105b. --- docs/contributing/index.html | 2 +- docs/documentation/index.html | 32 +- docs/documentation/index.xml | 30 - docs/getting-started/index.html | 2 +- docs/help/index.html | 2 +- docs/index.html | 1753 +++++++++++++++++++++++++++++- docs/index.xml | 31 - docs/introduction/index.html | 3 +- docs/introduction/index.xml | 1 - docs/license/index.html | 2 +- docs/related-projects/index.html | 2 +- 11 files changed, 1743 insertions(+), 117 deletions(-) diff --git a/docs/contributing/index.html b/docs/contributing/index.html index 4ee5be91..81dff3ce 100644 --- a/docs/contributing/index.html +++ b/docs/contributing/index.html @@ -10,7 +10,7 @@ Contributing - Laradock Docs - + diff --git a/docs/documentation/index.html b/docs/documentation/index.html index eac1a214..19ec4a76 100644 --- a/docs/documentation/index.html +++ b/docs/documentation/index.html @@ -10,7 +10,7 @@ Documentation - Laradock Docs - + @@ -1028,36 +1028,6 @@ A package (Laravel RethinkD
    • set the DB_DATABASE to database.
    -


    -

    - -

    Use Minio

    - -

    1 - Configure Minio: - - On the workspace container, change INSTALL_MC to true to get the client - - Set MINIO_ACCESS_KEY and MINIO_ACCESS_SECRET if you wish to set proper keys

    - -

    2 - Run the Minio Container (minio) with the docker-compose up command. Example:

    - -
    docker-compose up -d minio
    -
    - -

    3 - Open your browser and visit the localhost on port 9000 at the following URL: http://localhost:9000

    - -

    4 - Create a bucket either through the webui or using the mc client:

    - -
      mc mb minio/bucket
    -
    - -

    5 - When configuring your other clients use the following details:

    - -
      S3_HOST=http://minio
    -  S3_KEY=access
    -  S3_SECRET=secretkey
    -  S3_REGION=us-east-1
    -  S3_BUCKET=bucket
    -
    -


    diff --git a/docs/documentation/index.xml b/docs/documentation/index.xml index 87655bfd..82df15f1 100644 --- a/docs/documentation/index.xml +++ b/docs/documentation/index.xml @@ -712,36 +712,6 @@ A package (<a href="https://github.com/duxet/laravel-rethinkdb">La <li>set the <code>DB_DATABASE</code> to <code>database</code>.</li> </ul> -<p><br> -<a name="Use-Minio"></a></p> - -<h2 id="use-minio">Use Minio</h2> - -<p>1 - Configure Minio: - - On the workspace container, change <code>INSTALL_MC</code> to true to get the client - - Set <code>MINIO_ACCESS_KEY</code> and <code>MINIO_ACCESS_SECRET</code> if you wish to set proper keys</p> - -<p>2 - Run the Minio Container (<code>minio</code>) with the <code>docker-compose up</code> command. Example:</p> - -<pre><code class="language-bash">docker-compose up -d minio -</code></pre> - -<p>3 - Open your browser and visit the localhost on port <strong>9000</strong> at the following URL: <code>http://localhost:9000</code></p> - -<p>4 - Create a bucket either through the webui or using the mc client:</p> - -<pre><code class="language-bash"> mc mb minio/bucket -</code></pre> - -<p>5 - When configuring your other clients use the following details:</p> - -<pre><code> S3_HOST=http://minio - S3_KEY=access - S3_SECRET=secretkey - S3_REGION=us-east-1 - S3_BUCKET=bucket -</code></pre> - <p><br> <a name="CodeIgniter"></a></p> diff --git a/docs/getting-started/index.html b/docs/getting-started/index.html index 753a995a..6f0e0ff8 100644 --- a/docs/getting-started/index.html +++ b/docs/getting-started/index.html @@ -10,7 +10,7 @@ Getting Started - Laradock Docs - + diff --git a/docs/help/index.html b/docs/help/index.html index 650f7ff6..724889dd 100644 --- a/docs/help/index.html +++ b/docs/help/index.html @@ -10,7 +10,7 @@ Help & Questions - Laradock Docs - + diff --git a/docs/index.html b/docs/index.html index 4b3023e7..f5cc01f6 100644 --- a/docs/index.html +++ b/docs/index.html @@ -9,8 +9,8 @@ - Welcome - Laradock Docs - + Laradock Docs + @@ -69,6 +69,9 @@ + + + @@ -97,7 +100,7 @@
    - Welcome + Laradock Docs
    @@ -325,8 +328,1725 @@
    -

    Welcome

    + +

    Introduction

    + + +

    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…).

    + +

    Quick Overview

    + +

    Let’s see how easy it is to install NGINX, PHP, Composer, MySQL, Redis and beanstalkd:

    + +

    1 - Clone LaraDock inside your PHP project:

    + +
    git clone https://github.com/Laradock/laradock.git
    +
    + +

    2 - Enter the laradock folder and run this command:

    + +
    docker-compose up -d nginx mysql redis beanstalkd
    +
    + +

    3 - Open your .env file and set the following:

    + +
    DB_HOST=mysql
    +REDIS_HOST=redis
    +QUEUE_HOST=beanstalkd
    +
    + +

    4 - Open your browser and visit localhost: http://localhost.

    + +
    That's it! enjoy :)
    +
    + +

    + +

    What is Docker?

    + +

    Docker 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 on Linux, Mac OS and Windows.

    + +

    + +

    Why Docker not Vagrant!?

    + +

    Vagrant 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).

    + +

    + +

    LaraDock VS Homestead (For Laravel Developers)

    + +
    +

    LaraDock It’s like Laravel Homestead but for Docker instead of Vagrant.

    +
    + +

    LaraDock and 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.

    + +

    + +

    Demo Video

    + +

    What’s better than a Demo Video:

    + + + +

    + +

    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..
    • +
    + +

    + +

    Supported Software (Containers)

    + +
      +
    • Database Engines: + +
        +
      • MySQL
      • +
      • PostgreSQL
      • +
      • MariaDB
      • +
      • MongoDB
      • +
      • Neo4j
      • +
      • RethinkDB
      • +
    • +
    • 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
      • +
      • PgAdmin
      • +
      • ElasticSearch
      • +
      • Selenium
      • +
      • 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 :)

    +
    + +

    + +

    Chat with us

    + +

    You are welcome to join our chat room on Gitter.

    + +

    Gitter

    + + +

    Getting Started

    + + + +

    Requirements

    + + + +

    Installation

    + +

    Choose the setup the best suits your needs.

    + +

    A) Setup for Single Project:

    + +

    (In case you want a Docker environment for each project)

    + +
    A.1) Setup environment in existing Project:
    + +

    (In case you already have a project, and you want to setup an environment to run it)

    + +

    1 - Clone this repository on your project root directory:

    + +
    git submodule add https://github.com/Laradock/laradock.git
    +
    + +

    Note 1: If you are not yet using Git for your PHP project, you can use git clone https://github.com/Laradock/laradock.git instead.

    + +

    Note 2: To keep track of your LaraDock changes, between your projects and also keep LaraDock updated. Check this

    + +

    Note 3: In this case the folder structure will be like this:

    + +
    - project1
    +	- laradock
    +- project2
    +	- laradock
    +
    + +
    A.2) Setup environment first then create project:
    + +

    (In case you don’t have a project, and you want to create your project inside the Docker environment)

    + +

    1 - Clone this repository anywhere on your machine:

    + +
    git clone https://github.com/laradock/laradock.git
    +
    + +

    Note: In this case the folder structure will be like this:

    + +
    - projects
    +	- laradock
    +	- myProject
    +
    + +

    2 - Edit the docker-compose.yml file to map to your project directory once you have it (example: - ../myProject:/var/www).

    + +

    3 - Stop and re-run your docker-compose command for the changes to take place.

    + +
    docker-compose stop && docker-compose up -d XXXX YYYY ZZZZ ....
    +
    + +

    B) Setup for Multiple Projects:

    + +

    1 - Clone this repository anywhere on your machine:

    + +
    git clone https://github.com/laradock/laradock.git
    +
    + +

    2 - Edit the docker-compose.yml file to map to your projects directories:

    + +
        applications:
    +        image: tianon/true
    +        volumes:
    +            - ../project1/:/var/www/project1
    +            - ../project2/:/var/www/project2
    +
    + +

    3 - You can access all sites by visiting http://localhost/project1/public and http://localhost/project2/public but of course that’s not very useful so let’s setup NGINX quickly.

    + +

    4 - Go to nginx/sites and copy sample.conf.example to project1.conf then to project2.conf

    + +

    5 - Open the project1.conf file and edit the server_name and the root as follow:

    + +
        server_name project1.dev;
    +    root /var/www/project1/public;
    +
    + +

    Do the same for each project project2.conf, project3.conf,…

    + +

    6 - Add the domains to the hosts files.

    + +
    127.0.0.1  project1.dev
    +
    + +

    7 - Create your project Databases. Right now you have to do it manually by entering your DB container, until we automate it soon.

    + +

    Usage

    + +

    Read Before starting:

    + +

    If you are using Docker Toolbox (VM), do one of the following:

    + + + +


    + +
    +

    Warning: If you used an older version of LaraDock it’s highly recommended to rebuild the containers you need to use see how you rebuild a container in order to prevent errors as much as possible.

    +
    + +


    + +

    1 - Run Containers: (Make sure you are in the laradock folder before running the docker-compose commands).

    + +

    Example: Running NGINX and MySQL:

    + +
    docker-compose up -d nginx mysql
    +
    + +

    Note: The workspace and php-fpm will run automatically in most of the cases, so no need to specify them in the up command. If you couldn’t find them running then you need specify them as follow: docker-compose up -d nginx php-fpm mysql workspace.

    + +

    You can select your own combination of Containers form the list below:

    + +

    nginx, hhvm, php-fpm, mysql, redis, postgres, mariadb, neo4j, mongo, apache2, caddy, memcached, beanstalkd, beanstalkd-console, rabbitmq, workspace, phpmyadmin, aerospike, pgadmin, elasticsearch, rethinkdb.

    + +


    +2 - Enter the Workspace container, to execute commands like (Artisan, Composer, PHPUnit, Gulp, …).

    + +
    docker-compose exec workspace bash
    +
    + +

    Alternatively, for Windows PowerShell users: execute the following command to enter any running container:

    + +
    docker exec -it {workspace-container-id} bash
    +
    + +

    Note: You can add --user=laradock (example docker-compose exec --user=laradock workspace bash) to have files created as your host’s user. (you can change the PUID (User id) and PGID (group id) variables from the docker-compose.yml).

    + +


    +3 - Edit your project configurations.

    + +

    Open your .env file and set the DB_HOST to mysql:

    + +
    DB_HOST=mysql
    +
    + +

    If you want to use Laravel and you don’t have it installed yet, see How to Install Laravel in a Docker Container.

    + +


    +4 - Open your browser and visit your localhost address (http://localhost/).

    + +


    +Debugging: if you are facing any problem here check the Debugging section.

    + +

    If you need a special support. Contact me, more details in the Help & Questions section.

    + + +

    Documentation

    + + + +

    + +

    List current running Containers

    + +
    docker ps
    +
    + +

    You can also use the following command if you want to see only this project containers:

    + +
    docker-compose ps
    +
    + +


    +

    + +

    Close all running Containers

    + +
    docker-compose stop
    +
    + +

    To stop single container do:

    + +
    docker-compose stop {container-name}
    +
    + +


    +

    + +

    Delete all existing Containers

    + +
    docker-compose down
    +
    + +


    +

    + +

    Enter a Container (run commands in a running Container)

    + +

    1 - First list the current running containers with docker ps

    + +

    2 - Enter any container using:

    + +
    docker-compose exec {container-name} bash
    +
    + +

    Example: enter MySQL container

    + +
    docker-compose exec mysql bash
    +
    + +

    Example: enter to MySQL prompt within MySQL container

    + +
    docker-compose exec mysql mysql -u homestead -psecret
    +
    + +

    3 - To exit a container, type exit.

    + +


    +

    + +

    Edit default container configuration

    + +

    Open the docker-compose.yml and change anything you want.

    + +

    Examples:

    + +

    Change MySQL Database Name:

    + +
        environment:
    +        MYSQL_DATABASE: laradock
    +    ...
    +
    + +

    Change Redis default port to 1111:

    + +
        ports:
    +        - "1111:6379"
    +    ...
    +
    + +


    +

    + +

    Edit a Docker Image

    + +

    1 - Find the Dockerfile of the image you want to edit, +
    +example for mysql it will be mysql/Dockerfile.

    + +

    2 - Edit the file the way you want.

    + +

    3 - Re-build the container:

    + +
    docker-compose build mysql
    +
    + +

    More info on Containers rebuilding here.

    + +


    +

    + +

    Build/Re-build Containers

    + +

    If you do any change to any Dockerfile make sure you run this command, for the changes to take effect:

    + +
    docker-compose build
    +
    + +

    Optionally you can specify which container to rebuild (instead of rebuilding all the containers):

    + +
    docker-compose build {container-name}
    +
    + +

    You might use the --no-cache option if you want full rebuilding (docker-compose build --no-cache {container-name}).

    + +


    +

    + +

    Add more Software (Docker Images)

    + +

    To add an image (software), just edit the docker-compose.yml and add your container details, to do so you need to be familiar with the docker compose file syntax.

    + +


    +

    + +

    View the Log files

    + +

    The NGINX Log file is stored in the logs/nginx directory.

    + +

    However to view the logs of all the other containers (MySQL, PHP-FPM,…) you can run this:

    + +
    docker logs {container-name}
    +
    + +


    +

    + +

    + +

    Install PHP Extensions

    + +

    Before installing PHP extensions, you have to decide whether you need for the FPM or CLI because each lives on a different container, if you need it for both you have to edit both containers.

    + +

    The PHP-FPM extensions should be installed in php-fpm/Dockerfile-XX. (replace XX with your default PHP version number). +
    +The PHP-CLI extensions should be installed in workspace/Dockerfile.

    + +


    +

    + +

    Change the (PHP-FPM) Version

    + +

    By default PHP-FPM 7.0 is running.

    + +
    +

    The PHP-FPM is responsible of serving your application code, you don’t have to change the PHP-CLI version if you are planning to run your application on different PHP-FPM version.

    +
    + +

    A) Switch from PHP 7.0 to PHP 5.6

    + +

    1 - Open the docker-compose.yml.

    + +

    2 - Search for Dockerfile-70 in the PHP container section.

    + +

    3 - Change the version number, by replacing Dockerfile-70 with Dockerfile-56, like this:

    + +
        php-fpm:
    +        build:
    +            context: ./php-fpm
    +            dockerfile: Dockerfile-70
    +    ...
    +
    + +

    4 - Finally rebuild the container

    + +
    docker-compose build php-fpm
    +
    + +
    +

    For more details about the PHP base image, visit the official PHP docker images.

    +
    + +

    B) Switch from PHP 7.0 or 5.6 to PHP 5.5

    + +

    We do not natively support PHP 5.5 anymore, but you can get it in few steps:

    + +

    1 - Clone https://github.com/laradock/php-fpm.

    + +

    3 - Rename Dockerfile-56 to Dockerfile-55.

    + +

    3 - Edit the file FROM php:5.6-fpm to FROM php:5.5-fpm.

    + +

    4 - Build an image from Dockerfile-55.

    + +

    5 - Open the docker-compose.yml file.

    + +

    6 - Point php-fpm to your Dockerfile-55 file.

    + +


    +

    + +

    Change the PHP-CLI Version

    + +

    By default PHP-CLI 7.0 is running.

    + +
    +

    Note: it’s not very essential to edit the PHP-CLI version. The PHP-CLI is only used for the Artisan Commands & Composer. It doesn’t serve your Application code, this is the PHP-FPM job.

    +
    + +

    The PHP-CLI is installed in the Workspace container. To change the PHP-CLI version you need to edit the workspace/Dockerfile.

    + +

    Right now you have to manually edit the Dockerfile or create a new one like it’s done for the PHP-FPM. (consider contributing).

    + +


    +

    + +

    Install xDebug

    + +

    1 - First install xDebug in the Workspace and the PHP-FPM Containers: +
    +a) open the docker-compose.yml file +
    +b) search for the INSTALL_XDEBUG argument under the Workspace Container +
    +c) set it to true +
    +d) search for the INSTALL_XDEBUG argument under the PHP-FPM Container +
    +e) set it to true

    + +

    It should be like this:

    + +
        workspace:
    +        build:
    +            context: ./workspace
    +            args:
    +                - INSTALL_XDEBUG=true
    +    ...
    +    php-fpm:
    +        build:
    +            context: ./php-fpm
    +            args:
    +                - INSTALL_XDEBUG=true
    +    ...
    +
    + +

    2 - Re-build the containers docker-compose build workspace php-fpm

    + +

    3 - Open laradock/workspace/xdebug.ini and/or laradock/php-fpm/xdebug.ini and enable at least the following configurations:

    + +
    xdebug.remote_autostart=1
    +xdebug.remote_enable=1
    +xdebug.remote_connect_back=1
    +
    + +

    For information on how to configure xDebug with your IDE and work it out, check this Repository.

    + +


    +

    + +

    Start/Stop xDebug:

    + +

    By installing xDebug, you are enabling it to run on startup by default.

    + +

    To control the behavior of xDebug (in the php-fpm Container), you can run the following commands from the LaraDock root folder, (at the same prompt where you run docker-compose):

    + +
      +
    • Stop xDebug from running by default: ./xdebugPhpFpm stop.
    • +
    • Start xDebug by default: ./xdebugPhpFpm start.
    • +
    • See the status: ./xdebugPhpFpm status.
    • +
    + +

    Note: If ./xdebugPhpFpm doesn’t execute and gives Permission Denied error the problem can be that file xdebugPhpFpm doesn’t have execution access. This can be fixed by running chmod command with desired access permissions.

    + +


    +

    + +

    Install Deployer (Deployment tool for PHP)

    + +

    1 - Open the docker-compose.yml file +
    +2 - Search for the INSTALL_DEPLOYER argument under the Workspace Container +
    +3 - Set it to true +

    + +

    It should be like this:

    + +
        workspace:
    +        build:
    +            context: ./workspace
    +            args:
    +                - INSTALL_DEPLOYER=true
    +    ...
    +
    + +

    4 - Re-build the containers docker-compose build workspace

    + +

    Deployer Documentation Here

    + +


    +

    + +


    +

    + +

    Prepare LaraDock for Production

    + +

    It’s recommended for production to create a custom docker-compose.yml file. For that reason, LaraDock is shipped with production-docker-compose.yml which should contain only the containers you are planning to run on production (usage example: docker-compose -f production-docker-compose.yml up -d nginx mysql redis ...).

    + +

    Note: The Database (MySQL/MariaDB/…) ports should not be forwarded on production, because Docker will automatically publish the port on the host, which is quite insecure, unless specifically told not to. So make sure to remove these lines:

    + +
    ports:
    +    - "3306:3306"
    +
    + +

    To learn more about how Docker publishes ports, please read this excellent post on the subject.

    + +


    +

    + +

    Setup Laravel and Docker on Digital Ocean

    + +

    Full Guide Here

    + +


    +

    + +

    + +

    Install Laravel from a Docker Container

    + +

    1 - First you need to enter the Workspace Container.

    + +

    2 - Install Laravel.

    + +

    Example using Composer

    + +
    composer create-project laravel/laravel my-cool-app "5.2.*"
    +
    + +
    +

    We recommend using composer create-project instead of the Laravel installer, to install Laravel.

    +
    + +

    For more about the Laravel installation click here.

    + +

    3 - Edit docker-compose.yml to Map the new application path:

    + +

    By default, LaraDock assumes the Laravel application is living in the parent directory of the laradock folder.

    + +

    Since the new Laravel application is in the my-cool-app folder, we need to replace ../:/var/www with ../my-cool-app/:/var/www, as follow:

    + +
        application:
    +		 image: tianon/true
    +        volumes:
    +            - ../my-cool-app/:/var/www
    +    ...
    +
    + +

    4 - Go to that folder and start working..

    + +
    cd my-cool-app
    +
    + +

    5 - Go back to the LaraDock installation steps to see how to edit the .env file.

    + +


    +

    + +

    Run Artisan Commands

    + +

    You can run artisan commands and many other Terminal commands from the Workspace container.

    + +

    1 - Make sure you have the workspace container running.

    + +
    docker-compose up -d workspace // ..and all your other containers
    +
    + +

    2 - Find the Workspace container name:

    + +
    docker-compose ps
    +
    + +

    3 - Enter the Workspace container:

    + +
    docker-compose exec workspace bash
    +
    + +

    Add --user=laradock (example docker-compose exec --user=laradock workspace bash) to have files created as your host’s user.

    + +

    4 - Run anything you want :)

    + +
    php artisan
    +
    + +
    Composer update
    +
    + +
    phpunit
    +
    + +


    +

    + +

    Run Laravel Queue Worker

    + +

    1 - First add php-worker container. It will be similar as like PHP-FPM Container. +
    +a) open the docker-compose.yml file +
    +b) add a new service container by simply copy-paste this section below PHP-FPM container

    + +
        php-worker:
    +      build:
    +        context: ./php-fpm
    +        dockerfile: Dockerfile-70 # or Dockerfile-56, choose your PHP-FPM container setting
    +      volumes_from:
    +        - applications
    +      command: php artisan queue:work
    +
    + +

    2 - Start everything up

    + +
    docker-compose up -d php-worker
    +
    + +


    +

    + +

    Use Redis

    + +

    1 - First make sure you run the Redis Container (redis) with the docker-compose up command.

    + +
    docker-compose up -d redis
    +
    + +

    2 - Open your Laravel’s .env file and set the REDIS_HOST to redis

    + +
    REDIS_HOST=redis
    +
    + +

    If you don’t find the REDIS_HOST variable in your .env file. Go to the database configuration file config/database.php and replace the default 127.0.0.1 IP with redis for Redis like this:

    + +
    'redis' => [
    +    'cluster' => false,
    +    'default' => [
    +        'host'     => 'redis',
    +        'port'     => 6379,
    +        'database' => 0,
    +    ],
    +],
    +
    + +

    3 - To enable Redis Caching and/or for Sessions Management. Also from the .env file set CACHE_DRIVER and SESSION_DRIVER to redis instead of the default file.

    + +
    CACHE_DRIVER=redis
    +SESSION_DRIVER=redis
    +
    + +

    4 - Finally make sure you have the predis/predis package (~1.0) installed via Composer:

    + +
    composer require predis/predis:^1.0
    +
    + +

    5 - You can manually test it from Laravel with this code:

    + +
    \Cache::store('redis')->put('LaraDock', 'Awesome', 10);
    +
    + +


    +

    + +

    Use Mongo

    + +

    1 - First install mongo in the Workspace and the PHP-FPM Containers: +
    +a) open the docker-compose.yml file +
    +b) search for the INSTALL_MONGO argument under the Workspace Container +
    +c) set it to true +
    +d) search for the INSTALL_MONGO argument under the PHP-FPM Container +
    +e) set it to true

    + +

    It should be like this:

    + +
        workspace:
    +        build:
    +            context: ./workspace
    +            args:
    +                - INSTALL_MONGO=true
    +    ...
    +    php-fpm:
    +        build:
    +            context: ./php-fpm
    +            args:
    +                - INSTALL_MONGO=true
    +    ...
    +
    + +

    2 - Re-build the containers docker-compose build workspace php-fpm

    + +

    3 - Run the MongoDB Container (mongo) with the docker-compose up command.

    + +
    docker-compose up -d mongo
    +
    + +

    4 - Add the MongoDB configurations to the config/database.php configuration file:

    + +
    'connections' => [
    +
    +    'mongodb' => [
    +        'driver'   => 'mongodb',
    +        'host'     => env('DB_HOST', 'localhost'),
    +        'port'     => env('DB_PORT', 27017),
    +        'database' => env('DB_DATABASE', 'database'),
    +        'username' => '',
    +        'password' => '',
    +        'options'  => [
    +            'database' => '',
    +        ]
    +    ],
    +
    +	// ...
    +
    +],
    +
    + +

    5 - Open your Laravel’s .env file and update the following variables:

    + +
      +
    • set the DB_HOST to your mongo.
    • +
    • set the DB_PORT to 27017.
    • +
    • set the DB_DATABASE to database.
    • +
    + +

    6 - Finally make sure you have the jenssegers/mongodb package installed via Composer and its Service Provider is added.

    + +
    composer require jenssegers/mongodb
    +
    + +

    More details about this here.

    + +

    7 - Test it:

    + +
      +
    • First let your Models extend from the Mongo Eloquent Model. Check the documentation.
    • +
    • Enter the Workspace Container.
    • +
    • Migrate the Database php artisan migrate.
    • +
    + +


    +

    + +

    Use PhpMyAdmin

    + +

    1 - Run the phpMyAdmin Container (phpmyadmin) with the docker-compose up command. Example:

    + +
    # use with mysql
    +docker-compose up -d mysql phpmyadmin
    +
    +# use with mariadb
    +docker-compose up -d mariadb phpmyadmin
    +
    + +

    2 - Open your browser and visit the localhost on port 8080: http://localhost:8080

    + +


    +

    + +

    Use PgAdmin

    + +

    1 - Run the pgAdmin Container (pgadmin) with the docker-compose up command. Example:

    + +
    docker-compose up -d postgres pgadmin
    +
    + +

    2 - Open your browser and visit the localhost on port 5050: http://localhost:5050

    + +


    +

    + +

    Use Beanstalkd

    + +

    1 - Run the Beanstalkd Container:

    + +
    docker-compose up -d beanstalkd
    +
    + +

    2 - Configure Laravel to connect to that container by editing the config/queue.php config file.

    + +

    a. first set beanstalkd as default queue driver +b. set the queue host to beanstalkd : QUEUE_HOST=beanstalkd

    + +

    beanstalkd is now available on default port 11300.

    + +

    3 - Require the dependency package pda/pheanstalk using composer.

    + +

    Optionally you can use the Beanstalkd Console Container to manage your Queues from a web interface.

    + +

    1 - Run the Beanstalkd Console Container:

    + +
    docker-compose up -d beanstalkd-console
    +
    + +

    2 - Open your browser and visit http://localhost:2080/

    + +

    3 - Add the server

    + +
      +
    • Host: beanstalkd
    • +
    • Port: 11300
    • +
    + +

    4 - Done.

    + +


    +

    + +

    Use ElasticSearch

    + +

    1 - Run the ElasticSearch Container (elasticsearch) with the docker-compose up command:

    + +
    docker-compose up -d elasticsearch
    +
    + +

    2 - Open your browser and visit the localhost on port 9200: http://localhost:9200

    + +

    Install ElasticSearch Plugin

    + +

    1 - Install the ElasticSearch plugin like delete-by-query.

    + +
    docker exec {container-name} /usr/share/elasticsearch/bin/plugin install delete-by-query
    +
    + +

    2 - Restart elasticsearch container

    + +
    docker restart {container-name}
    +
    + +


    +

    + +

    Use Selenium

    + +

    1 - Run the Selenium Container (selenium) with the docker-compose up command. Example:

    + +
    docker-compose up -d selenium
    +
    + +

    2 - Open your browser and visit the localhost on port 4444 at the following URL: http://localhost:4444/wd/hub

    + +


    +

    + +

    Use RethinkDB

    + +

    The RethinkDB is an open-source Database for Real-time Web (RethinkDB). +A package (Laravel RethinkDB) is being developed and was released a version for Laravel 5.2 (experimental).

    + +

    1 - Run the RethinkDB Container (rethinkdb) with the docker-compose up command.

    + +
    docker-compose up -d rethinkdb
    +
    + +

    2 - Access the RethinkDB Administration Console http://localhost:8090/#tables for create a database called database.

    + +

    3 - Add the RethinkDB configurations to the config/database.php configuration file:

    + +
    'connections' => [
    +
    +	'rethinkdb' => [
    +		'name'      => 'rethinkdb',
    +		'driver'    => 'rethinkdb',
    +		'host'      => env('DB_HOST', 'rethinkdb'),
    +		'port'      => env('DB_PORT', 28015),
    +		'database'  => env('DB_DATABASE', 'test'),
    +	]
    +
    +	// ...
    +
    +],
    +
    + +

    4 - Open your Laravel’s .env file and update the following variables:

    + +
      +
    • set the DB_CONNECTION to your rethinkdb.
    • +
    • set the DB_HOST to rethinkdb.
    • +
    • set the DB_PORT to 28015.
    • +
    • set the DB_DATABASE to database.
    • +
    + +


    +

    + +


    +

    + +

    Install CodeIgniter

    + +

    To install CodeIgniter 3 on LaraDock all you have to do is the following simple steps:

    + +

    1 - Open the docker-compose.yml file.

    + +

    2 - Change CODEIGNITER=false to CODEIGNITER=true.

    + +

    3 - Re-build your PHP-FPM Container docker-compose build php-fpm.

    + +


    +

    + +

    Miscellaneous

    + +


    +

    + +

    Change the timezone

    + +

    To change the timezone for the workspace container, modify the TZ build argument in the Docker Compose file to one in the TZ database.

    + +

    For example, if I want the timezone to be New York:

    + +
        workspace:
    +        build:
    +            context: ./workspace
    +            args:
    +                - TZ=America/New_York
    +    ...
    +
    + +

    We also recommend setting the timezone in Laravel.

    + +


    +

    + +

    Adding cron jobs

    + +

    You can add your cron jobs to workspace/crontab/root after the php artisan line.

    + +
    * * * * * php /var/www/artisan schedule:run >> /dev/null 2>&1
    +
    +# Custom cron
    +* * * * * root echo "Every Minute" > /var/log/cron.log 2>&1
    +
    + +

    Make sure you change the timezone if you don’t want to use the default (UTC).

    + +


    +

    + +

    Access workspace via ssh

    + +

    You can access the workspace container through localhost:2222 by setting the INSTALL_WORKSPACE_SSH build argument to true.

    + +

    To change the default forwarded port for ssh:

    + +
        workspace:
    +		ports:
    +			- "2222:22" # Edit this line
    +    ...
    +
    + +


    +

    + +

    MySQL access from host

    + +

    You can forward the MySQL/MariaDB port to your host by making sure these lines are added to the mysql or mariadb section of the docker-compose.yml or in your environment specific Compose file.

    + +
    ports:
    +    - "3306:3306"
    +
    + +


    +

    + +

    MySQL root access

    + +

    The default username and password for the root MySQL user are root and root.

    + +

    1 - Enter the MySQL container: docker-compose exec mysql bash.

    + +

    2 - Enter mysql: mysql -uroot -proot for non root access use mysql -uhomestead -psecret.

    + +

    3 - See all users: SELECT User FROM mysql.user;

    + +

    4 - Run any commands show databases, show tables, select * from......

    + +


    +

    + +

    Change MySQL port

    + +

    Modify the mysql/my.cnf file to set your port number, 1234 is used as an example.

    + +
    [mysqld]
    +port=1234
    +
    + +

    If you need MySQL access from your host, do not forget to change the internal port number ("3306:3306" -> "3306:1234") in the docker-compose configuration file.

    + +


    +

    + +

    Use custom Domain (instead of the Docker IP)

    + +

    Assuming your custom domain is laravel.dev

    + +

    1 - Open your /etc/hosts file and map your localhost address 127.0.0.1 to the laravel.dev domain, by adding the following:

    + +
    127.0.0.1    laravel.dev
    +
    + +

    2 - Open your browser and visit {http://laravel.dev}

    + +

    Optionally you can define the server name in the NGINX configuration file, like this:

    + +
    server_name laravel.dev;
    +
    + +


    +

    + +

    Enable Global Composer Build Install

    + +

    Enabling Global Composer Install during the build for the container allows you to get your composer requirements installed and available in the container after the build is done.

    + +

    1 - Open the docker-compose.yml file

    + +

    2 - Search for the COMPOSER_GLOBAL_INSTALL argument under the Workspace Container and set it to true

    + +

    It should be like this:

    + +
        workspace:
    +        build:
    +            context: ./workspace
    +            args:
    +                - COMPOSER_GLOBAL_INSTALL=true
    +    ...
    +
    + +

    3 - Now add your dependencies to workspace/composer.json

    + +

    4 - Re-build the Workspace Container docker-compose build workspace

    + +


    +

    + +

    Install Prestissimo

    + +

    Prestissimo is a plugin for composer which enables parallel install functionality.

    + +

    1 - Enable Running Global Composer Install during the Build:

    + +

    Click on this Enable Global Composer Build Install and do steps 1 and 2 only then continue here.

    + +

    2 - Add prestissimo as requirement in Composer:

    + +

    a - Now open the workspace/composer.json file

    + +

    b - Add "hirak/prestissimo": "^0.3" as requirement

    + +

    c - Re-build the Workspace Container docker-compose build workspace

    + +


    +

    + +

    Install Node + NVM

    + +

    To install NVM and NodeJS in the Workspace container

    + +

    1 - Open the docker-compose.yml file

    + +

    2 - Search for the INSTALL_NODE argument under the Workspace Container and set it to true

    + +

    It should be like this:

    + +
        workspace:
    +        build:
    +            context: ./workspace
    +            args:
    +                - INSTALL_NODE=true
    +    ...
    +
    + +

    3 - Re-build the container docker-compose build workspace

    + +


    +

    + +

    Install Node + YARN

    + +

    Yarn is a new package manager for JavaScript. It is so faster than npm, which you can find here.To install NodeJS and Yarn in the Workspace container:

    + +

    1 - Open the docker-compose.yml file

    + +

    2 - Search for the INSTALL_NODE and INSTALL_YARN argument under the Workspace Container and set it to true

    + +

    It should be like this:

    + +
        workspace:
    +        build:
    +            context: ./workspace
    +            args:
    +                - INSTALL_NODE=true
    +                - INSTALL_YARN=true
    +    ...
    +
    + +

    3 - Re-build the container docker-compose build workspace

    + +


    +

    + +

    Install Linuxbrew

    + +

    Linuxbrew is a package manager for Linux. It is the Linux version of MacOS Homebrew and can be found here. To install Linuxbrew in the Workspace container:

    + +

    1 - Open the docker-compose.yml file

    + +

    2 - Search for the INSTALL_LINUXBREW argument under the Workspace Container and set it to true

    + +

    It should be like this:

    + +
        workspace:
    +        build:
    +            context: ./workspace
    +            args:
    +                - INSTALL_LINUXBREW=true
    +    ...
    +
    + +

    3 - Re-build the container docker-compose build workspace

    + +


    + +

    + +

    Common Terminal Aliases

    + +

    When you start your docker container, LaraDock will copy the aliases.sh file located in the laradock/workspace directory and add sourcing to the container ~/.bashrc file.

    + +

    You are free to modify the aliases.sh as you see fit, adding your own aliases (or function macros) to suit your requirements.

    + +


    +

    + +

    Install Aerospike extension

    + +

    1 - First install aerospike in the Workspace and the PHP-FPM Containers: +
    +a) open the docker-compose.yml file +
    +b) search for the INSTALL_AEROSPIKE_EXTENSION argument under the Workspace Container +
    +c) set it to true +
    +d) search for the INSTALL_AEROSPIKE_EXTENSION argument under the PHP-FPM Container +
    +e) set it to true

    + +

    It should be like this:

    + +
        workspace:
    +        build:
    +            context: ./workspace
    +            args:
    +                - INSTALL_AEROSPIKE_EXTENSION=true
    +    ...
    +    php-fpm:
    +        build:
    +            context: ./php-fpm
    +            args:
    +                - INSTALL_AEROSPIKE_EXTENSION=true
    +    ...
    +
    + +

    2 - Re-build the containers docker-compose build workspace php-fpm

    + +


    +

    + +

    Install Laravel Envoy (Envoy Task Runner)

    + +

    1 - Open the docker-compose.yml file +
    +2 - Search for the INSTALL_LARAVEL_ENVOY argument under the Workspace Container +
    +3 - Set it to true +

    + +

    It should be like this:

    + +
        workspace:
    +        build:
    +            context: ./workspace
    +            args:
    +                - INSTALL_LARAVEL_ENVOY=true
    +    ...
    +
    + +

    4 - Re-build the containers docker-compose build workspace

    + +

    Laravel Envoy Documentation Here

    + +


    +

    + +

    PHPStorm Debugging Guide

    + +

    Remote debug Laravel web and phpunit tests.

    + +

    Debugging Guide Here

    + +


    +

    + +

    Keep track of your LaraDock changes

    + +
      +
    1. Fork the LaraDock repository.
    2. +
    3. Use that fork as a submodule.
    4. +
    5. Commit all your changes to your fork.
    6. +
    7. Pull new stuff from the main repository from time to time.
    8. +
    + +


    +

    + +

    Upgrading LaraDock

    + +

    Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requires upgrading LaraDock from v3.* to v4.*:

    + +
      +
    1. Stop the docker VM docker-machine stop {default}
    2. +
    3. Install Docker for Mac or Windows.
    4. +
    5. Upgrade LaraDock to v4.*.* (git pull origin master)
    6. +
    7. Use LaraDock as you used to do: docker-compose up -d nginx mysql.
    8. +
    + +

    Note: If you face any problem with the last step above: rebuild all your containers +docker-compose build --no-cache +“Warning Containers Data might be lost!”

    + +


    +

    + +

    Improve speed on MacOS

    + +

    Sharing code into Docker containers with osxfs have very poor performance compared to Linux. You can get around this issue by using NFS to share your files betwen your host and your container.

    + +
    +

    How to share files using NFS (d4m-nfs)

    +
    + +

    d4m-nfs automatically mount NFS volume instead of osxfs one.

    + +

    1) Update the Docker [File Sharing] preferences:

    + +

    Click on the Docker Icon > Preferences > (remove everything form the list except /tmp).

    + +

    2) Restart Docker.

    + +

    3) Clone the d4m-nfs repository to your home directory.

    + +
    git clone https://github.com/IFSight/d4m-nfs ~/d4m-nfs
    +
    + +

    4) Create (or edit) the file ~/d4m-nfs/etc/d4m-nfs-mounts.txt, and write the follwing configuration in it:

    + +
    /Users:/Users
    +/Volumes:/Volumes
    +/private:/private
    +
    + +

    5) Create (or edit) the file /etc/exports, make sure it exists and is empty. (There may be collisions if you come from Vagrant or if you already executed the d4m-nfs.sh script before).

    + +

    6) Run the d4m-nfs.sh script:

    + +
    ~/d4m-nfs/d4m-nfs.sh
    +
    + +

    That’s it! Run your containers.. Example:

    + +
    docker-compose up -d nginx mysql
    +
    + +

    Note: If you faced any errors, try restarting Docker, and make sure you have no spaces in the d4m-nfs-mounts.txt file, and your /etc/exports file is clear.

    + +


    +

    + +

    Common Problems

    + +

    Here’s a list of the common problems you might face, and the possible solutions.

    + +


    + +

    I see a blank (white) page instead of the Laravel ‘Welcome’ page!

    + +

    Run the following command from the Laravel root directory:

    + +
    sudo chmod -R 777 storage bootstrap/cache
    +
    + +


    + +

    I see “Welcome to nginx” instead of the Laravel App!

    + +

    Use http://127.0.0.1 instead of http://localhost in your browser.

    + +


    + +

    I see an error message containing address already in use or port is already allocated

    + +

    Make sure the ports for the services that you are trying to run (22, 80, 443, 3306, etc.) are not being used already by other programs on the host, such as a built in apache/httpd service or other development tools you have installed.

    + +


    + +

    I get NGINX error 404 Not Found on Windows.

    + +
      +
    1. Go to docker Settings on your Windows machine.
    2. +
    3. Click on the Shared Drives tab and check the drive that contains your project files.
    4. +
    5. Enter your windows username and password.
    6. +
    7. Go to the reset tab and click restart docker.
    8. +
    + +


    + +

    The time in my services does not match the current time

    + +
      +
    1. Make sure you’ve changed the timezone.
    2. +
    3. Stop and rebuild the containers (docker-compose up -d --build <services>)
    4. +
    + +


    + +

    I get MySQL connection refused

    + +

    This error sometimes happens because your Laravel application isn’t running on the container localhost IP (Which is 127.0.0.1). Steps to fix it:

    + +
      +
    • Option A + +
        +
      1. Check your running Laravel application IP by dumping Request::ip() variable using dd(Request::ip()) anywhere on your application. The result is the IP of your Laravel container.
      2. +
      3. Change the DB_HOST variable on env with the IP that you received from previous step.
      4. +
    • +
    • Option B + +
        +
      1. Change the DB_HOST value to the same name as the MySQL docker container. The LaraDock docker-compose file currently has this as mysql
      2. +
    • +
    + + +

    Related Projects

    + +

    LaraDock related projects:

    + + + +

    If you want your project listed here, please open an issue.

    + + +

    Help & Questions

    + +

    Join the chat room on Gitter and get help and support from the community.

    + +

    You can as well can open an issue on Github (will be labeled as Question) and discuss it with people on Gitter.

    + + +

    Contributing

    + + + +

    Your contribution is more than welcome.

    + +

    Got a Question or Problem?

    + +

    If you have questions about how to use LaraDock, please direct your questions to the discussion on Gitter. If you believe your question could help others, then consider opening an Issue (it will be labeled as Question).

    + +

    Found an Issue?

    + +

    If you find a bug in the source code or a mistake in the documentation, you can help us by +submitting an Issue. Even better you can submit a Pull Request with a fix.

    + +

    Want a Feature?

    + +

    You can request a new feature by submitting an Issue (it will be labeled as Feature Suggestion). If you would like to implement a new feature then consider submitting a Pull Request.

    + +

    Edit the documentation

    + +

    Laradock uses Hugo as website generator tool, with the Material Docs theme. You might need to check their docs quickly.

    + +
      +
    1. Install Hugo on your machine.
    2. +
    3. Clone laradock.
    4. +
    5. Go to /docs.
    6. +
    7. Delete everything except the _settings folder & the CNAME file.
    8. +
    9. Open docs/_settings from your terminal and run hugo serve to host the website locally.
    10. +
    11. Open the docs/_settings/content and search for the folder of the section you want to edit.
    12. +
    13. In each secion there’s an index.md file, that’s the file you need to edit.
    14. +
    15. To edit the sidebar (in case you are adding new section) go to docs/_settings/config.toml and add the section there.
    16. +
    17. After done editing, run the this command hugo to generate the updated site inside the docs folder.
    18. +
    19. Go back to the project root directory, commit and push..
    20. +
    + +

    Coding Guidelines

    + +

    Support new Software

    + +
      +
    • Create folder with the software name.

    • + +
    • Add a Dockerfile, write your code there.

    • + +
    • You may add additional files in the software folder.

    • + +
    • Add the software to the docker-compose.yml file.

    • + +
    • Make sure you follow our commenting style.

    • + +
    • Add the software in the Readme.

    • +
    + +

    Edit existing Software

    + +
      +
    • Open the software (container) folder.

    • + +
    • Edit the files you want to update.

    • + +
    • Note: If you want to edit the base image of the Workspace or the php-fpm Containers, +you need to edit their Docker-files from their GitHub repositories. For more info read their Dockerfiles comment on the LaraDock repository.

    • + +
    • Make sure to update the Readme in case you made any changes.

    • +
    + +

    Issue/PR Submission Guidelines

    + +

    Submitting an Issue

    + +

    Before you submit your issue search the archive, maybe your question was already answered.

    + +

    If your issue appears to be a bug, and hasn’t been reported, open a new issue. +Help us to maximize the effort we can spend fixing issues and adding new +features, by not reporting duplicate issues.

    + +

    Before Submitting a Pull Request (PR)

    + +

    Always Test everything and make sure its working:

    + +
      +
    • Pull the latest updates (or fork of you don’t have permission)
    • +
    • Before editing anything: + +
        +
      • Test building the container (docker-compose build –no-cache container-name) build with no cache first.
      • +
      • Test running the container with some other containers in real app and see of everything is working fine.
      • +
    • +
    • Now edit the container (edit section by section and test rebuilding the container after every edited section) + +
        +
      • Testing building the container (docker-compose build container-name) with no errors.
      • +
      • Test it in real App.
      • +
    • +
    + +

    Submitting a PR

    + +

    Consider the following guidelines:

    + +
      +
    • Search GitHub for an open or closed Pull Request that relates to your submission. You don’t want to duplicate effort.

    • + +
    • Make your changes in a new git branch:

      + +
       git checkout -b my-fix-branch master
      +
    • + +
    • Commit your changes using a descriptive commit message.

    • + +
    • Push your branch to GitHub:

      + +
      git push origin my-fix-branch
      +
    • + +
    • In GitHub, send a pull request to laradock:master.

    • + +
    • If we suggest changes then:

      + +
        +
      • Make the required updates.
      • +
      • Commit your changes to your branch (e.g. my-fix-branch).
      • +
      • Push the changes to your GitHub repository (this will update your Pull Request).
      • +
    • +
    + +
    +

    If the PR gets too outdated we may ask you to rebase and force push to update the PR:

    +
    + +
    git rebase master -i
    +git push origin my-fix-branch -f
    +
    + +

    WARNING. Squashing or reverting commits and forced push thereafter may remove GitHub comments on code that were previously made by you and others in your commits.

    + +

    After your PR is merged

    + +

    After your pull request is merged, you can safely delete your branch and pull the changes +from the main (upstream) repository:

    + +
      +
    • Delete the remote branch on GitHub either through the GitHub web UI or your local shell as follows:

      + +
      git push origin --delete my-fix-branch
      +
    • + +
    • Check out the master branch:

      + +
      git checkout master -f
      +
    • + +
    • Delete the local branch:

      + +
      git branch -D my-fix-branch
      +
    • + +
    • Update your master with the latest upstream version:

      + +
      git pull --ff upstream master
      +
    • +
    + +


    + +

    Happy Coding :)

    + + +

    License

    + +

    MIT License (MIT)

    + + +

    Welcome

    + +
    diff --git a/docs/index.xml b/docs/index.xml index 20a68913..d40e43a6 100644 --- a/docs/index.xml +++ b/docs/index.xml @@ -167,7 +167,6 @@ QUEUE_HOST=beanstalkd <li>PgAdmin</li> <li>ElasticSearch</li> <li>Selenium</li> -<li>Minio</li> <li>Workspace <ul> @@ -1073,36 +1072,6 @@ A package (<a href="https://github.com/duxet/laravel-rethinkdb">La <li>set the <code>DB_DATABASE</code> to <code>database</code>.</li> </ul> -<p><br> -<a name="Use-Minio"></a></p> - -<h2 id="use-minio">Use Minio</h2> - -<p>1 - Configure Minio: - - On the workspace container, change <code>INSTALL_MC</code> to true to get the client - - Set <code>MINIO_ACCESS_KEY</code> and <code>MINIO_ACCESS_SECRET</code> if you wish to set proper keys</p> - -<p>2 - Run the Minio Container (<code>minio</code>) with the <code>docker-compose up</code> command. Example:</p> - -<pre><code class="language-bash">docker-compose up -d minio -</code></pre> - -<p>3 - Open your browser and visit the localhost on port <strong>9000</strong> at the following URL: <code>http://localhost:9000</code></p> - -<p>4 - Create a bucket either through the webui or using the mc client:</p> - -<pre><code class="language-bash"> mc mb minio/bucket -</code></pre> - -<p>5 - When configuring your other clients use the following details:</p> - -<pre><code> S3_HOST=http://minio - S3_KEY=access - S3_SECRET=secretkey - S3_REGION=us-east-1 - S3_BUCKET=bucket -</code></pre> - <p><br> <a name="CodeIgniter"></a></p> diff --git a/docs/introduction/index.html b/docs/introduction/index.html index 862e0119..497148e2 100644 --- a/docs/introduction/index.html +++ b/docs/introduction/index.html @@ -10,7 +10,7 @@ Introduction - Laradock Docs - + @@ -483,7 +483,6 @@ QUEUE_HOST=beanstalkd
  • PgAdmin
  • ElasticSearch
  • Selenium
  • -
  • Minio
  • Workspace
      diff --git a/docs/introduction/index.xml b/docs/introduction/index.xml index 56e7f89c..f6f3263e 100644 --- a/docs/introduction/index.xml +++ b/docs/introduction/index.xml @@ -167,7 +167,6 @@ QUEUE_HOST=beanstalkd <li>PgAdmin</li> <li>ElasticSearch</li> <li>Selenium</li> -<li>Minio</li> <li>Workspace <ul> diff --git a/docs/license/index.html b/docs/license/index.html index 2e84206a..7501cb72 100644 --- a/docs/license/index.html +++ b/docs/license/index.html @@ -10,7 +10,7 @@ License - Laradock Docs - + diff --git a/docs/related-projects/index.html b/docs/related-projects/index.html index dcf527d6..25872d24 100644 --- a/docs/related-projects/index.html +++ b/docs/related-projects/index.html @@ -10,7 +10,7 @@ Related Projects - Laradock Docs - + From 082a73ee331d87ff1052441c214af9c3bc1a42a4 Mon Sep 17 00:00:00 2001 From: Max Mekenya Date: Wed, 8 Mar 2017 14:56:35 +1000 Subject: [PATCH 5/7] Bump NVM script version to 0.33.1 (#658) https://github.com/creationix/nvm/releases/tag/v0.33.1 --- workspace/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace/Dockerfile b/workspace/Dockerfile index d3ab702e..0e21a56e 100644 --- a/workspace/Dockerfile +++ b/workspace/Dockerfile @@ -195,7 +195,7 @@ ENV INSTALL_NODE ${INSTALL_NODE} ENV NVM_DIR /home/laradock/.nvm RUN if [ ${INSTALL_NODE} = true ]; then \ # Install nvm (A Node Version Manager) - curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.6/install.sh | bash && \ + curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash && \ . $NVM_DIR/nvm.sh && \ nvm install ${NODE_VERSION} && \ nvm use ${NODE_VERSION} && \ From 178d7e1505e313ad61de374c6112c08fb1b1c253 Mon Sep 17 00:00:00 2001 From: alchimik Date: Wed, 8 Mar 2017 12:57:18 +0800 Subject: [PATCH 6/7] fix selenium (#655) see https://github.com/SeleniumHQ/docker-selenium#running-the-images --- docker-compose.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 91e689c6..283d7770 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -349,6 +349,9 @@ services: build: ./selenium ports: - "4444:4444" + volumes: + # see https://github.com/SeleniumHQ/docker-selenium#running-the-images + - /dev/shm:/dev/shm ### Volumes Setup ########################################### From 94c6240586d37269146cb13612800c682ecfd46a Mon Sep 17 00:00:00 2001 From: alchimik Date: Wed, 8 Mar 2017 13:15:46 +0800 Subject: [PATCH 7/7] workaround for 'Xdebug breaks on access to class static property' (#654) see https://github.com/docker-library/php/issues/133 --- php-fpm/Dockerfile-56 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/php-fpm/Dockerfile-56 b/php-fpm/Dockerfile-56 index acd02b80..4b4989ab 100644 --- a/php-fpm/Dockerfile-56 +++ b/php-fpm/Dockerfile-56 @@ -55,8 +55,11 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \ ARG INSTALL_XDEBUG=false RUN if [ ${INSTALL_XDEBUG} = true ]; then \ # Install the xdebug extension - pecl install xdebug && \ - docker-php-ext-enable xdebug \ + # pecl install xdebug && docker-php-ext-enable xdebug \ + # workaround for https://github.com/docker-library/php/issues/133 + # - Xdebug breaks on access to class static property + apt-get install -y php5-xdebug && \ + echo "zend_extension=/usr/lib/php5/20131226/xdebug.so" > /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \ ;fi # Copy xdebug configration for remote debugging