The docker environment for developing Blackbird Chess
Go to file
2016-05-18 10:25:54 +03:00
application Create Application Container to hold App code 2016-05-18 07:13:19 +03:00
beanstalkd Support Beanstalkd and Beanstalkd Console 2016-05-09 05:02:15 +03:00
beanstalkd-console Support Beanstalkd and Beanstalkd Console 2016-05-09 05:02:15 +03:00
data Major updates. 2016-05-06 17:04:02 +03:00
mariadb remove the duplicated volumes from DBs dockerfiles 2016-05-09 15:53:16 +03:00
memcached add memcached support 2016-05-12 02:17:39 +01:00
mysql remove the duplicated volumes from DBs dockerfiles 2016-05-09 15:53:16 +03:00
nginx fix nginx not connecting to php port 9000 2016-05-18 06:29:33 +03:00
php-fpm rename php to php-fpm 2016-05-18 02:43:23 +03:00
postgres remove the duplicated volumes from DBs dockerfiles 2016-05-09 15:53:16 +03:00
redis Major updates. 2016-05-06 17:04:02 +03:00
workspace add alias for phpunit in the .bashrc 2016-05-18 10:25:54 +03:00
.gitignore Major updates. 2016-05-06 17:04:02 +03:00
docker-compose.yml update the logs section 2016-05-18 07:56:12 +03:00
LICENSE update the readme file 2016-03-11 10:11:24 +02:00
README.md add alias for phpunit in the .bashrc 2016-05-18 10:25:54 +03:00

LaraDock

forthebadge

LaraDock helps you run your Laravel App on Docker real quick.
It's like Laravel Homestead but for Docker instead of Vagrant.


## Contents

Intro

LaraDock strives to make the development experience easier. 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 local machine.

Usage Overview: Run NGINX and MySQL.

docker-compose up  nginx mysql 

Features

  • Easy switch between PHP versions: 7.0 - 5.6 - 5.5 ...
  • Choose your favorite database engine: MySQL - Postgres - Redis ...
  • Run your own combination of software's: Memcached - MariaDB ...
  • Every software runs on a separate container: PHP-FPM - NGINX ...
  • 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.
  • Data container, to keep Data safe and accessible.
  • 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.

Supported Containers

  • PHP-FPM (7.0 - 5.6 - 5.5)
  • NGINX
  • MySQL
  • PostgreSQL
  • MariaDB
  • Redis
  • Memcached
  • Beanstalkd
  • Beanstalkd Console
  • Data Volume (Databases Data Container)
  • Application (Application Code Container)
  • Workspace (includes: Git, Vim, nano, PHP-CLI 7.0, cURL)

If you can't find your container, build it yourself and add it to this list. Contributions are welcomed :)

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.

What is Laravel?

Seriously!!!

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 tens 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

LaraDock and Homestead both gives you a 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 Compose official commands). And Docker manages you Virtual Containers.

Running a virtual Container is much faster than running a full virtual Machine.
Thus LaraDock is much faster than Homestead.

Requirements

Linux Windows & MAC
Laravel Laravel
Git Git
Docker Engine Docker Toolbox
Docker Compose

Installation

1 - Clone the LaraDock repository, in any of your Laravel projects:

git clone https://github.com/LaraDock/laradock.git docker

You can use git submodule add instead of git clone if you are already using Git for your Laravel project (Recommended):

git submodule add https://github.com/LaraDock/laradock.git docker

These commands should create a docker folder, on the root directory of your Laravel project.

Usage

0 - For Windows & MAC users only: make sure you have a running Docker Virtual Host on your machine. (Linux users don't need a Virtual Host, so skip this step).
How to run a Docker Virtual Host?


1 - Open your Laravel's `.env` file and set the `DB_HOST` to your `{Docker-IP}`:
DB_HOST=xxx.xxx.xxx.xxx

How to find my Docker IP Address?


2 - Run the Containers, (you can select the software's (containers) that you wish to run)
*Make sure you are in the `docker` folder before running the `docker-compose` command.*

Example: Running NGINX, MySQL, Redis and the workspace:

docker-compose up -d  nginx mysql redis Workspace

Note: the PHP-FPM, Application and Data Containers will automatically run.

Supported Containers: nginx, workspace, mysql, redis, postgres, mariadb, memcached, beanstalkd, beanstalkd-console, data, php-fpm, application.


3 - Open your browser and visit your `{Docker-IP}` address (`http://xxx.xxx.xxx.xxx`).
**Debugging**: in case you faced an error here, run this command from the Laravel root directory:
sudo chmod -R 777 storage && sudo chmod -R 777 bootstrap/cache

Follow @Mahmoud_Zalt


## Documentation

List current running Containers

docker ps

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

docker-compose ps

#### Close all running Containers ```bash docker-compose stop ```

To stop single container do:

docker-compose stop {container-name}

#### Delete all existing Containers ```bash docker-compose down ```

Note: Careful with this command as it will delete your Data Volume Container as well. (if you want to keep your Database data than you should stop each container by itself as follow):


#### 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}

#### Change the PHP Version By default **PHP 7.0** is running.
To change the default PHP version:

1 - Open the docker-compose.yml.

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

3 - Change the version number.
Example to select version 5.6 instead of 7.0 you have to replace Dockerfile-70 with Dockerfile-56.

Sample:

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

Supported Versions:

  • For (PHP 7.0.*) use Dockerfile-70
  • For (PHP 5.6.*) use Dockerfile-56
  • For (PHP 5.5.*) use Dockerfile-55

4 - Finally rebuild the container

docker-compose build php

For more details visit the official PHP docker images.


#### Add more Software's (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.


#### 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 defaut port to 1111:

  ports:
    - "1111:6379"

#### Use custom Domain (instead of the Docker IP)

Assuming your custom domain is laravel.dev and your current Docker-IP is xxx.xxx.xxx.xxx.

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

xxx.xxx.xxx.xxx    laravel.dev

2 - Open your Laravel's .env file and replace the 127.0.0.1 default values with your {Docker-IP}.
Example:

DB_HOST=xxx.xxx.xxx.xxx

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

Optionally you can define the server name in the nginx config file, like this:

server_name laravel.dev;

#### 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}

#### Use Redis

1 - First make sure you run the Redis Container with the docker-compose command.

2 - Open your Laravel's .env file and set the REDIS_HOST to your Docker-IP instead of the default 127.0.0.1 IP.

REDIS_HOST=xxx.xxx.xxx.xxx

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

'redis' => [
    'cluster' => false,
    'default' => [
        'host'     => 'xxx.xxx.xxx.xxx',
        '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 first.

composer require predis/predis:^1.0

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

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

#### Enter a Container (SSH into a running Container)

1 - first list the current running containers with docker ps

2 - enter any container using:

docker exec -it {container-name} bash

3 - to exit a container, type exit.


#### Add/Remove a Docker Container To prevent a container (software) from running, open the `docker-compose.yml` file, and comment out the container section or remove it entirely.
#### Edit a Docker Image

1 - Find the dockerfile of the image you want to edit,
example for php it will be docker/php/dockerfile.

2 - Edit the file the way you want.

3 - Re-build the container:

docker-compose build

If you find any bug or you have and suggestion that can improve the performance of any image, please consider contributing. Thanks in advance.


#### Run a Docker Virtual Host

These steps are only for Windows & MAC users (Linux users don't need a virtual host):

1 - Run the default Host:

docker-machine start default
  • If the host "default" does not exist, create one using the command below, else skip it:

  • docker-machine create -d virtualbox default
    

2 - Run this command to configure your shell:

eval $(docker-machine env)

#### Find your Docker IP Address

On Windows & MAC:

docker-machine ip default

(The default IP is 192.168.99.100)

On Linux:

Your IP Address is 127.0.0.1

boot2docker users: run boot2docker ip (when boot2docker is up).


## Contributing

This little project was built by one man who has a full time job and many responsibilities, so if you like this project and you find that it needs a bug fix or support for new software or upgrade for the current containers, or anything else.. Do not hesitate to contribute, you are more than welcome :)

All Docker Images can be found at https://github.com/LaraDock

Support

Issues on Github.

Questions?

If you have any question, send me a direct message on LaraChat, my username is mahmoud_zalt.

Credits

Mahmoud Zalt

License

MIT License (MIT)