blackbirdchess-docker-dev/README.md

1091 lines
27 KiB
Markdown
Raw Normal View History

2015-08-21 21:53:44 +02:00
# LaraDock
2016-05-09 03:23:03 +02:00
[![forthebadge](http://forthebadge.com/images/badges/built-by-developers.svg)](http://zalt.me)
2015-08-21 21:53:44 +02:00
2016-07-23 18:53:16 +02:00
[![Gitter](https://badges.gitter.im/LaraDock/laradock.svg)](https://gitter.im/LaraDock/laradock?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
2015-08-21 21:53:44 +02:00
2016-04-06 07:47:31 +02:00
LaraDock helps you run your **Laravel** App on **Docker** real quick.
2016-03-06 06:29:15 +01:00
<br>
2016-04-06 07:47:31 +02:00
It's like Laravel Homestead but for Docker instead of Vagrant.
2016-07-14 03:27:45 +02:00
>With LaraDock, use Docker first and learn about it later.
2016-04-06 07:47:31 +02:00
2016-07-23 18:53:16 +02:00
![](https://s31.postimg.org/nbettdki3/lara_dock_poster_new.jpg)
2016-03-06 06:29:15 +01:00
2016-03-11 08:40:59 +01:00
<br>
2016-02-17 16:55:40 +01:00
## Contents
2015-08-22 12:03:20 +02:00
2015-08-21 21:53:44 +02:00
2016-02-17 16:55:40 +01:00
- [Intro](#Intro)
2016-05-07 18:51:45 +02:00
- [Features](#features)
2016-07-28 07:08:41 +02:00
- [Supported Software's](#Supported-Containers)
2016-05-07 17:48:27 +02:00
- [What is Docker](#what-is-docker)
- [What is Laravel](#what-is-laravel)
- [Why Docker not Vagrant](#why-docker-not-vagrant)
- [LaraDock VS Homestead](#laradock-vs-homestead)
2016-05-20 08:24:26 +02:00
- [Demo Video](#Demo)
2016-02-17 16:55:40 +01:00
- [Requirements](#Requirements)
- [Installation](#Installation)
2016-02-17 16:55:40 +01:00
- [Usage](#Usage)
- [Documentation](#Documentation)
- [Docker](#Docker)
- [List current running Containers](#List-current-running-Containers)
- [Close all running Containers](#Close-all-running-Containers)
- [Delete all existing Containers](#Delete-all-existing-Containers)
- [Enter a Container (SSH into a running Container)](#Enter-Container)
- [Edit default container configuration](#Edit-Container)
- [Edit a Docker Image](#Edit-a-Docker-Image)
- [Build/Re-build Containers](#Build-Re-build-Containers)
- [Add more Software's (Docker Images)](#Add-Docker-Images)
- [View the Log files](#View-the-Log-files)
- [Laravel](#Laravel):
2016-05-19 20:40:25 +02:00
- [Install Laravel from a Docker Container](#Install-Laravel)
- [Run Artisan Commands](#Run-Artisan-Commands)
- [Use Redis](#Use-Redis)
2016-06-11 16:10:18 +02:00
- [Use Mongo](#Use-Mongo)
- [Use phpMyAdmin](#Use-phpMyAdmin)
- [PHP](#PHP)
- [Install PHP Extensions](#Install-PHP-Extensions)
- [Change the PHP-FPM Version](#Change-the-PHP-FPM-Version)
- [Change the PHP-CLI Version](#Change-the-PHP-CLI-Version)
- [Install xDebug](#Install-xDebug)
2016-08-16 17:23:56 +02:00
- [Start/Stop xDebug](#Controll-xDebug)
- [Production](#Production)
- [Setup Laravel and Docker on Digital Ocean](#Digital-Ocean)
- [Misc](#Misc)
- [Use custom Domain](#Use-custom-Domain)
- [Enable Global Composer Build Install](#Enable-Global-Composer-Build-Install)
2016-07-14 03:27:45 +02:00
- [Install Prestissimo](#Install-Prestissimo)
- [Install Node + NVM](#Install-Node)
2016-05-28 10:04:05 +02:00
- [Debugging](#debugging)
2016-08-16 17:23:56 +02:00
- [Upgrading LaraDock](#upgrading-laradock)
2016-05-19 17:04:53 +02:00
- [Help & Questions](#Help)
2015-08-21 21:53:44 +02:00
2016-02-17 16:55:40 +01:00
<a name="Intro"></a>
## Intro
2015-08-21 21:53:44 +02:00
LaraDock strives to make the development experience easier.
2016-02-17 16:55:40 +01:00
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.
2015-08-21 21:53:44 +02:00
2016-07-29 17:39:24 +02:00
**Usage Overview:**
Let's see how easy it is to install `NGINX`, `PHP`, `Composer`, `MySQL` and `Redis`. Then run `Laravel`.
1. Get LaraDock inside your Laravel project:
<br>
`git clone https://github.com/LaraDock/laradock.git`.
2. Enter the laradock folder and run only these Containers:
<br>
`docker-compose up -d nginx mysql redis`
3. Open your `.env` file and set `DB_HOST` to `mysql` and `REDIS_HOST` to `redis`.
4. Open your browser and visit the localhost: `http://localdock`
2016-05-13 01:00:25 +02:00
2016-05-07 18:51:45 +02:00
<a name="features"></a>
### Features
- Easy switch between PHP versions: 7.0, 5.6, 5.5...
- Choose your favorite database engine: MySQL, Postgres, MariaDB...
- Run your own combination of software's: Memcached, HHVM, Beanstalkd...
- Every software runs on a separate container: PHP-FPM, NGINX, PHP-CLI...
2016-05-07 18:59:59 +02:00
- Easy to customize any container, with simple edit to the `dockerfile`.
- All Images extends from an official base Image. (Trusted base Images).
2016-05-13 01:00:25 +02:00
- Pre-configured Nginx for Laravel.
2016-05-07 18:51:45 +02:00
- Easy to apply configurations inside containers.
- Clean and well structured Dockerfiles (`dockerfile`).
2016-05-07 18:51:45 +02:00
- Latest version of the Docker Compose file (`docker-compose`).
- Everything is visible and editable.
2016-07-27 04:44:36 +02:00
- Fast Images Builds.
- More to come every week..
2016-05-13 01:00:25 +02:00
<a name="Supported-Containers"></a>
2016-07-28 07:08:41 +02:00
### Supported Software's (Containers)
2016-05-13 01:00:25 +02:00
2016-07-28 07:08:41 +02:00
- **Database Engines:**
- MySQL
- PostgreSQL
- MariaDB
- MongoDB
- Neo4j
- **Cache Engines:**
- Redis
- Memcached
- **PHP Servers:**
- NGINX
- Apache2
- Caddy
- **PHP Compilers:**
- PHP-FPM
- HHVM
- **Message Queueing Systems:**
- Beanstalkd (+ Beanstalkd Console)
- **Tools:**
- Workspace (PHP7-CLI, Composer, Git, Node, Gulp, SQLite, Vim, Nano, cURL...)
- phpMyAdmin
2016-05-13 01:00:25 +02:00
2016-07-28 07:08:41 +02:00
>If you can't find your Software, build it yourself and add it to this list. Contributions are welcomed :)
2016-05-13 01:00:25 +02:00
2016-05-07 18:51:45 +02:00
2016-05-07 17:48:27 +02:00
<a name="what-is-docker"></a>
2016-02-17 16:55:40 +01:00
### What is Docker?
2015-08-21 21:53:44 +02:00
2016-07-14 03:27:45 +02:00
[Docker](https://www.docker.com) is an open-source project that automates the deployment of applications inside software containers, by providing an additional layer of abstraction and automation of [operating-system-level virtualization](https://en.wikipedia.org/wiki/Operating-system-level_virtualization) on Linux, Mac OS and Windows.
2015-08-21 21:53:44 +02:00
2016-05-07 17:48:27 +02:00
<a name="what-is-laravel"></a>
2016-02-17 16:55:40 +01:00
### What is Laravel?
2015-08-21 21:53:44 +02:00
2016-02-17 16:55:40 +01:00
Seriously!!!
2015-08-21 21:53:44 +02:00
2016-05-07 17:48:27 +02:00
<a name="why-docker-not-vagrant"></a>
2016-02-17 16:55:40 +01:00
### Why Docker not Vagrant!?
2016-05-07 17:48:27 +02:00
[Vagrant](https://www.vagrantup.com) creates Virtual Machines in minutes while Docker creates Virtual Containers in seconds.
2015-08-21 21:53:44 +02:00
2016-02-17 16:55:40 +01:00
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.
2015-08-21 21:53:44 +02:00
2016-07-07 15:29:00 +02:00
In addition to the speed, Docker gives tons of features that cannot be achieved with Vagrant.
2016-05-07 17:48:27 +02:00
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).
<a name="laradock-vs-homestead"></a>
### LaraDock VS Homestead
LaraDock and [Homestead](https://laravel.com/docs/master/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.
2016-07-14 03:27:45 +02:00
- LaraDock is a tool that controls Docker for you (using Docker & Docker Compose official commands). And Docker manages your Virtual Containers.
2016-05-07 17:48:27 +02:00
2016-07-14 03:27:45 +02:00
Running a virtual Container is much faster than running a full virtual Machine. Thus **LaraDock is much faster than Homestead**.
2015-08-22 12:03:20 +02:00
2016-05-07 17:48:27 +02:00
2016-05-20 08:24:26 +02:00
<a name="Demo"></a>
## Demo Video
2016-07-29 12:52:16 +02:00
What's better than a **Demo Video**:
- LaraDock v4.0 (Coming soon..)
- 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)
<a name="Requirements"></a>
## Requirements
- [Git](https://git-scm.com/downloads)
2016-07-29 12:52:16 +02:00
- [Docker](https://www.docker.com/products/docker/)
2016-05-19 20:40:25 +02:00
<a name="Installation"></a>
## Installation
2015-08-21 21:53:44 +02:00
1 - Clone the `LaraDock` repository:
2016-08-04 23:10:27 +02:00
**A)** If you already have a Laravel project, clone this repository on your `Laravel` root directory:
```bash
2016-05-19 20:40:25 +02:00
git submodule add https://github.com/LaraDock/laradock.git
```
2016-05-19 20:40:25 +02:00
>If you are not already using Git for your Laravel project, you can use `git clone` instead of `git submodule`.
2016-05-19 20:40:25 +02:00
**B)** If you don't have a Laravel project, and you want to install Laravel from Docker, clone this repo anywhere on your machine:
```bash
2016-05-19 20:40:25 +02:00
git clone https://github.com/LaraDock/laradock.git
```
2016-05-07 17:48:27 +02:00
<a name="Usage"></a>
## Usage
2015-08-23 13:20:24 +02:00
**Read Before starting:**
If you are using **Docker Toolbox** (VM), do one of the following:
- Upgrade to Docker [Native](https://www.docker.com/products/docker) for Mac/Windows (Recommended). Check out [Upgrading Laradock](#upgrading-laradock)
- Use LaraDock v3.* (Visit the `LaraDock-ToolBox` [Branch](https://github.com/LaraDock/laradock/tree/LaraDock-ToolBox)).
2016-07-29 12:52:16 +02:00
If you are using **Docker Native** (For Mac/Windows) or even for Linux, continue this documentation normally since LaraDock v4 and above is just for that.
2015-08-23 13:20:24 +02:00
2016-02-17 17:21:01 +01:00
<br>
2016-04-08 10:33:33 +02:00
<br>
2016-07-29 12:52:16 +02:00
1 - Run Containers: *(Make sure you are in the `laradock` folder before running the `docker-compose` commands).*
2016-06-11 19:49:04 +02:00
2016-05-19 20:40:25 +02:00
**Example:** Running NGINX and MySQL:
2015-08-21 21:53:44 +02:00
```bash
2016-05-19 20:40:25 +02:00
docker-compose up -d nginx mysql
```
2016-07-28 07:08:41 +02:00
You can select your own combination of Containers form the list below:
2016-06-11 19:49:04 +02:00
`nginx`, `hhvm`, `php-fpm`, `mysql`, `redis`, `postgres`, `mariadb`, `neo4j`, `mongo`, `apache2`, `caddy`, `memcached`, `beanstalkd`, `beanstalkd-console`, `workspace`, `phpmyadmin`.
2016-06-11 19:49:04 +02:00
**Note**: `workspace` and `php-fpm` will run automatically in most of the cases, so no need to specify them in the `up` command.
2016-05-19 20:40:25 +02:00
<br>
2016-07-29 12:52:16 +02:00
2 - Enter the Workspace container, to execute commands like (Artisan, Composer, PHPUnit, Gulp, ...).
2016-03-11 10:06:31 +01:00
```bash
2016-07-29 12:52:16 +02:00
docker-compose exec workspace bash
```
2016-07-27 09:49:43 +02:00
<br />
2016-07-29 12:52:16 +02:00
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`).
2016-05-19 20:40:25 +02:00
<br>
2016-07-29 12:52:16 +02:00
3 - Edit the Laravel configurations.
2016-05-19 20:40:25 +02:00
If you don't have a Laravel project installed yet, see [How to Install Laravel in a Docker Container](#Install-Laravel).
2016-07-29 12:52:16 +02:00
Open your Laravel's `.env` file and set the `DB_HOST` to your `mysql`:
2016-05-19 20:40:25 +02:00
```env
2016-07-29 12:52:16 +02:00
DB_HOST=mysql
2016-05-19 20:40:25 +02:00
```
2016-07-29 12:52:16 +02:00
2016-05-19 20:40:25 +02:00
<br>
2016-07-29 12:52:16 +02:00
4 - Open your browser and visit your localhost address (`http://localhost/`).
2015-08-21 21:53:44 +02:00
2015-08-22 12:03:20 +02:00
2016-05-20 08:24:26 +02:00
<br>
2016-05-28 10:04:05 +02:00
**Debugging**: if you are facing any problem here check the [Debugging](#debugging) section.
If you need a special support. Contact me, more details in the [Help & Questions](#Help) section.
2016-04-08 10:33:33 +02:00
2016-03-11 08:40:59 +01:00
<br>
2015-08-21 21:53:44 +02:00
<a name="Documentation"></a>
## Documentation
<a name="Docker"></a>
<a name="List-current-running-Containers"></a>
2016-05-21 18:19:03 +02:00
### List current running Containers
2015-08-23 13:20:24 +02:00
```bash
docker ps
```
2016-05-18 06:16:20 +02:00
You can also use the this command if you want to see only this project containers:
```bash
docker-compose ps
```
2015-08-21 21:53:44 +02:00
<br>
<a name="Close-all-running-Containers"></a>
2016-05-21 18:19:03 +02:00
### Close all running Containers
2015-08-21 21:53:44 +02:00
```bash
docker-compose stop
```
To stop single container do:
```bash
docker-compose stop {container-name}
```
2016-05-07 17:48:27 +02:00
<br>
<a name="Delete-all-existing-Containers"></a>
2016-05-21 18:19:03 +02:00
### Delete all existing Containers
2015-08-21 21:53:44 +02:00
```bash
docker-compose down
2015-08-21 21:53:44 +02:00
```
*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):*
2015-08-21 22:17:24 +02:00
2015-08-21 21:53:44 +02:00
<br>
<a name="Enter-Container"></a>
2016-05-21 18:19:03 +02:00
### Enter a Container (SSH into a running Container)
1 - first list the current running containers with `docker ps`
2 - enter any container using:
```bash
2016-08-03 22:44:26 +02:00
docker-compose exec {container-name} bash
2016-07-29 12:52:16 +02:00
```
*Example: enter MySQL container*
```bash
docker-compose exec mysql bash
```
2016-07-29 12:52:16 +02:00
3 - to exit a container, type `exit`.
2015-08-21 21:53:44 +02:00
2016-04-08 10:33:33 +02:00
<br>
<a name="Edit-Container"></a>
2016-05-21 18:19:03 +02:00
### Edit default container configuration
Open the `docker-compose.yml` and change anything you want.
Examples:
Change MySQL Database Name:
```yml
environment:
MYSQL_DATABASE: laradock
```
Change Redis defaut port to 1111:
```yml
ports:
- "1111:6379"
```
2016-04-08 10:33:33 +02:00
2016-04-08 10:33:33 +02:00
<br>
<a name="Edit-a-Docker-Image"></a>
2016-05-21 18:19:03 +02:00
### Edit a Docker Image
1 - Find the `dockerfile` of the image you want to edit,
<br>
example for `mysql` it will be `mysql/Dockerfile`.
2016-04-08 10:33:33 +02:00
2 - Edit the file the way you want.
2016-04-08 10:33:33 +02:00
3 - Re-build the container:
2016-04-08 10:33:33 +02:00
```bash
docker-compose build mysql
```
2016-07-29 12:52:16 +02:00
More info on Containers rebuilding [here](#Build-Re-build-Containers).
2016-05-07 04:58:20 +02:00
2016-05-13 01:00:25 +02:00
<br>
<a name="Build-Re-build-Containers"></a>
2016-05-21 18:19:03 +02:00
### Build/Re-build Containers
If you do any change to any `dockerfile` make sure you run this command, for the changes to take effect:
```bash
docker-compose build
```
Optionally you can specify which container to rebuild (instead of rebuilding all the containers):
```bash
docker-compose build {container-name}
```
2016-07-29 12:52:16 +02:00
You might use the `--no-cache` option if you want full rebuilding (`docker-compose build --no-cache {container-name}`).
<br>
<a name="Add-Docker-Images"></a>
2016-05-21 18:19:03 +02:00
### 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](https://docs.docker.com/compose/compose-file/).
2015-08-21 21:53:44 +02:00
2016-05-07 04:58:20 +02:00
2015-08-22 12:03:20 +02:00
2016-04-04 09:19:49 +02:00
2016-05-07 04:58:20 +02:00
<br>
<a name="View-the-Log-files"></a>
### View the Log files
The Nginx Log file is stored in the `logs/nginx` directory.
2016-05-07 04:58:20 +02:00
However to view the logs of all the other containers (MySQL, PHP-FPM,...) you can run this:
2016-05-07 04:58:20 +02:00
```bash
docker logs {container-name}
2016-05-07 04:58:20 +02:00
```
2016-05-07 04:58:20 +02:00
<br>
<a name="Laravel"></a>
2016-05-07 04:58:20 +02:00
2016-05-19 20:40:25 +02:00
<a name="Install-Laravel"></a>
2016-05-21 18:19:03 +02:00
### Install Laravel from a Docker Container
2016-05-19 20:40:25 +02:00
1 - First you need to enter the Workspace Container.
2 - Install Laravel.
2016-05-19 20:40:25 +02:00
Example using Composer
```bash
composer create-project laravel/laravel my-cool-app "5.2.*"
2016-05-19 20:40:25 +02:00
```
> We recommend using `composer create-project` instead of the Laravel installer, to install Laravel.
For more about the Laravel installation click [here](https://laravel.com/docs/master#installing-laravel).
2016-05-19 20:40:25 +02:00
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.
2016-05-19 20:40:25 +02:00
Since the new Laravel application is in the `my-cool-app` folder, we need to replace `../:/var/www/laravel` with `../my-cool-app/:/var/www/laravel`, as follow:
```yaml
application:
build: ./application
volumes:
- ../my-cool-app/:/var/www/laravel
```
4 - Go to that folder and start working..
```bash
cd my-cool-app
```
2016-07-29 12:52:16 +02:00
5 - Go back to the laraDock installation steps to see how to edit the `.env` file.
2016-05-19 20:40:25 +02:00
2016-05-21 18:19:03 +02:00
<br>
<a name="Run-Artisan-Commands"></a>
2016-05-21 18:19:03 +02:00
### Run Artisan Commands
2016-05-07 04:58:20 +02:00
You can run artisan commands and many other Terminal commands from the Workspace container.
2016-05-07 04:58:20 +02:00
1 - Make sure you have the workspace container running.
```bash
docker-compose up -d workspace // ..and all your other containers
2016-05-07 04:58:20 +02:00
```
2 - Find the Workspace container name:
2016-05-07 04:58:20 +02:00
```bash
docker-compose ps
```
2016-05-18 06:56:12 +02:00
3 - Enter the Workspace container:
```bash
2016-07-29 12:52:16 +02:00
docker-compose exec workspace bash
```
2016-07-29 12:52:16 +02:00
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 :)
2016-05-18 06:56:12 +02:00
```bash
php artisan
2016-05-18 06:56:12 +02:00
```
```bash
Composer update
```
```bash
phpunit
```
2016-05-13 01:00:25 +02:00
<br>
<a name="Use-Redis"></a>
2016-05-21 18:19:03 +02:00
### Use Redis
2016-05-13 01:00:25 +02:00
2016-06-11 16:10:18 +02:00
1 - First make sure you run the Redis Container (`redis`) with the `docker-compose up` command.
```bash
docker-compose up -d redis
```
2016-05-13 01:00:25 +02:00
2016-07-29 12:52:16 +02:00
2 - Open your Laravel's `.env` file and set the `REDIS_HOST` to `redis`
2016-05-13 01:00:25 +02:00
```env
2016-07-29 12:52:16 +02:00
REDIS_HOST=redis
2016-05-13 01:00:25 +02:00
```
2016-07-29 12:52:16 +02:00
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 `redis` for Redis like this:
2016-05-13 01:00:25 +02:00
```php
'redis' => [
'cluster' => false,
'default' => [
2016-07-29 12:52:16 +02:00
'host' => 'redis',
2016-05-13 01:00:25 +02:00
'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`.
```env
CACHE_DRIVER=redis
SESSION_DRIVER=redis
```
2016-06-11 16:10:18 +02:00
4 - Finally make sure you have the `predis/predis` package `(~1.0)` installed via Composer:
2016-05-13 01:00:25 +02:00
```bash
composer require predis/predis:^1.0
```
5 - You can manually test it from Laravel with this code:
```php
\Cache::store('redis')->put('LaraDock', 'Awesome', 10);
```
2016-06-11 16:10:18 +02:00
<br>
<a name="Use-Mongo"></a>
### Use Mongo
2016-07-28 02:35:58 +02:00
1 - First install `mongo` in the Workspace and the PHP-FPM Containers:
<br>
a) open the `docker-compose.yml` file
<br>
2016-07-28 02:35:58 +02:00
b) search for the `INSTALL_MONGO` argument under the Workspace Container
<br>
c) set it to `true`
<br>
2016-07-28 02:35:58 +02:00
d) search for the `INSTALL_MONGO` argument under the PHP-FPM Container
<br>
e) set it to `true`
It should be like this:
```yml
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.
2016-06-11 16:10:18 +02:00
```bash
docker-compose up -d mongo
```
4 - Add the MongoDB configurations to the `config/database.php` config file:
2016-06-11 16:10:18 +02:00
```php
'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:
2016-06-11 16:10:18 +02:00
2016-07-29 12:52:16 +02:00
- set the `DB_HOST` to your `mongo`.
2016-06-11 16:10:18 +02:00
- 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.
2016-06-11 16:10:18 +02:00
```bash
composer require jenssegers/mongodb
```
More details about this [here](https://github.com/jenssegers/laravel-mongodb#installation).
7 - Test it:
2016-06-11 16:10:18 +02:00
- First let your Models extend from the Mongo Eloquent Model. Check the [documentation](https://github.com/jenssegers/laravel-mongodb#eloquent).
2016-07-29 12:52:16 +02:00
- Enter the Workspace Container.
2016-06-11 16:10:18 +02:00
- Migrate the Database `php artisan migrate`.
<br>
<a name="Use-phpMyAdmin"></a>
### Use phpMyAdmin
1 - Run the phpMyAdmin Container (`phpmyadmin`) with the `docker-compose up` command. Example:
```bash
# 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`
<br>
<a name="PHP"></a>
2016-04-04 09:19:49 +02:00
<a name="Install-PHP-Extensions"></a>
2016-05-21 18:19:03 +02:00
### 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)*.
<br>
The PHP-CLI extensions should be installed in `workspace/Dockerfile`.
2016-05-07 17:48:27 +02:00
<br>
<a name="Change-the-PHP-FPM-Version"></a>
### Change the (PHP-FPM) Version
By default **PHP-FPM 7.0** is running.
2015-08-21 21:53:44 +02:00
>The PHP-FPM is responsible of serving your application code, you don't have to change the PHP-CLI version if you are planing 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:
```txt
php-fpm:
build:
context: ./php-fpm
dockerfile: Dockerfile-70
```
4 - Finally rebuild the container
```bash
docker-compose build php
```
2016-07-27 04:44:36 +02:00
> For more details about the PHP base image, visit the [official PHP docker images](https://hub.docker.com/_/php/).
#### B) Switch from PHP `7.0` or `5.6` to PHP `5.5`
2016-07-27 04:44:36 +02:00
We do not natively support PHP 5.5 anymore, but you can get it in few steps:
2016-07-27 04:44:36 +02:00
1 - Clone `https://github.com/LaraDock/php-fpm`.
2016-07-27 04:44:36 +02:00
3 - Rename `Dockerfile-56` to `Dockerfile-55`.
2016-07-27 04:44:36 +02:00
3 - Edit the file `FROM php:5.6-fpm` to `FROM php:5.5-fpm`.
2016-07-27 04:44:36 +02:00
4 - Build an image from `Dockerfile-55`.
5 - Open the `docker-compose.yml` file.
6 - Point `php-fpm` to your `Dockerfile-55` file.
2015-08-21 21:53:44 +02:00
2016-02-17 16:55:40 +01:00
<br>
<a name="Change-the-PHP-CLI-Version"></a>
2016-05-21 18:19:03 +02:00
### Change the PHP-CLI Version
By default **PHP-CLI 7.0** is running.
>Note: it's not very essential to edit the PHP-CLI verion. 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).
<br>
<a name="Install-xDebug"></a>
### Install xDebug
2016-07-28 02:35:58 +02:00
1 - First install `xDebug` in the Workspace and the PHP-FPM Containers:
<br>
a) open the `docker-compose.yml` file
<br>
2016-07-28 02:35:58 +02:00
b) search for the `INSTALL_XDEBUG` argument under the Workspace Container
<br>
c) set it to `true`
<br>
2016-07-28 02:35:58 +02:00
d) search for the `INSTALL_XDEBUG` argument under the PHP-FPM Container
<br>
e) set it to `true`
It should be like this:
```yml
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`
2016-08-16 14:28:30 +02:00
For information on how to configure xDebug with your IDE and work it out, check this [Repository](https://github.com/LarryEitel/laravel-laradock-phpstorm).
<br>
<a name="Controll-xDebug"></a>
### Start/Stop xDebug:
By installing xDebug, you are enabling it to run on startup by default.
To controll the behavior of xDebug (in the `php-fpm` Container), you can run the following commands from the LaraDock root folder:
- Stop xDebug from running by default: `./xdebugPhpFpm stop`.
- Start xDebug by default: `./xdebugPhpFpm start`.
- See the status: `./xdebugPhpFpm status`.
<br>
<a name="Production"></a>
<br>
<a name="Digital-Ocean"></a>
### Setup Laravel and Docker on Digital Ocean
####[Full Giude Here](https://github.com/LaraDock/laradock/blob/master/_guides/digital_ocean.md)
<br>
<a name="Misc"></a>
<br>
<a name="Use-custom-Domain"></a>
2016-05-21 18:19:03 +02:00
### Use custom Domain (instead of the Docker IP)
2016-07-29 12:52:16 +02:00
Assuming your custom domain is `laravel.dev`
2016-07-29 12:52:16 +02:00
1 - Open your `/etc/hosts` file and map your localhost address `127.0.0.1` to the `laravel.dev` domain, by adding the following:
```bash
2016-07-29 12:52:16 +02:00
127.0.0.1 laravel.dev
```
2016-07-29 12:52:16 +02:00
2 - Open your browser and visit `{http://laravel.dev}`
Optionally you can define the server name in the nginx config file, like this:
```conf
server_name laravel.dev;
```
<br>
<a name="Enable-Global-Composer-Build-Install"></a>
### Enable Global Composer Build Install
2016-07-25 06:47:17 +02:00
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:
```yml
workspace:
build:
context: ./workspace
args:
- COMPOSER_GLOBAL_INSTALL=true
...
```
3 - now add your dependencies to `workspace/composer.json`
4 - rebuild the Workspace Container `docker-compose build workspace`
<br>
<a name="Install-Prestissimo"></a>
### Install Prestissimo
2016-07-28 02:35:58 +02:00
[Prestissimo](https://github.com/hirak/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](#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 - rebuild the Workspace Container `docker-compose build workspace`
2016-07-25 06:47:17 +02:00
<br>
<a name="Install-Node"></a>
### 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:
```yml
workspace:
build:
context: ./workspace
args:
- INSTALL_NODE=true
...
```
3 - Re-build the container `docker-compose build workspace`
2016-07-29 12:52:16 +02:00
2016-05-28 10:04:05 +02:00
<br>
<a name="debugging"></a>
### Debugging
*Here's a list of the common problems you might face, and the possible solutions.*
2016-07-12 18:46:46 +02:00
#### I see a blank (white) page instead of the Laravel 'Welcome' page!
2016-05-28 10:04:05 +02:00
2016-07-12 18:46:46 +02:00
Run the following command from the Laravel root directory:
2016-05-28 10:04:05 +02:00
```bash
sudo chmod -R 777 storage bootstrap/cache
```
2016-07-12 18:46:46 +02:00
#### I see "Welcome to nginx" instead of the Laravel App!
2016-08-03 22:50:45 +02:00
Use `http://127.0.0.1` instead of `http://localhost` in your browser.
2016-07-12 18:46:46 +02:00
#### I see an error message containing `address already in use`
2015-08-21 21:53:44 +02:00
2016-07-12 18:46:46 +02:00
Make sure the ports for the services that you are trying to run (80, 3306, etc.) are not being used already by other programs, such as a built in `apache`/`httpd` service or other development tools you have installed.
2015-08-21 21:53:44 +02:00
2016-08-16 14:28:30 +02:00
2016-07-29 12:52:16 +02:00
<br>
<a name="upgrading-laradock"></a>
### Upgrading LaraDock
2016-07-29 12:52:16 +02:00
Moving from Docker Toolbox (VirtualBox) to Docker Native (for Mac/Windows). Requires upgrading LaraDock from v3.* to v4.*:
2016-07-29 12:52:16 +02:00
1. Stop the docker vm `docker-machine stop {default}`
2. Install Docker for [Mac](https://docs.docker.com/docker-for-mac/) or [Windows](https://docs.docker.com/docker-for-windows/).
3. Upgrade LaraDock to `v4.*.*` (`git pull origin master`)
2016-07-29 12:52:16 +02:00
4. Use LaraDock as you used to do: `docker-compose up -d nginx mysql`.
**Note:** If you face any problem with the last step above: rebuild all your containers
2016-07-29 12:52:16 +02:00
`docker-compose build --no-cache`
"Warnning Containers Data might be lost!"
2016-07-29 12:52:16 +02:00
2016-05-31 18:15:29 +02:00
<br>
## Contributing
2016-05-19 17:04:53 +02:00
2016-05-31 18:15:29 +02:00
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 any container, or anything else.. Do not hesitate to contribute, you are more than welcome :)
2016-05-19 17:04:53 +02:00
#### Read our [Contribution Guidelines](https://github.com/LaraDock/laradock/blob/master/_guides/contributing.md)
2015-08-21 21:53:44 +02:00
2016-05-19 17:04:53 +02:00
<a name="Help"></a>
## Help & Questions
2015-08-21 21:53:44 +02:00
2016-07-28 02:35:58 +02:00
Join the chat room on [Gitter](https://gitter.im/LaraDock/laradock) and get help and support from the community.
2016-07-23 18:53:16 +02:00
You can as well can open an [issue](https://github.com/laradock/laradock/issues) on Github (will be labeled as Question) and discuss it with people on [Gitter](https://gitter.im/LaraDock/laradock).
2016-07-23 18:53:16 +02:00
For special help with Docker and/or Laravel, you can schedule a live call with the creator of this project at [Codementor.io](https://www.codementor.io/mahmoudz).
2015-08-21 21:53:44 +02:00
2016-05-31 18:15:29 +02:00
## Credits
2015-08-21 21:53:44 +02:00
**Creator:**
- [Mahmoud Zalt](https://github.com/Mahmoudz) (Twitter [@Mahmoud_Zalt](https://twitter.com/Mahmoud_Zalt))
**Main Contributors:**
- [MidasCodeBreaker](https://github.com/midascodebreaker)
2016-08-16 14:28:30 +02:00
- [Larry Eitel (LarryEitel)](https://github.com/LarryEitel)
- [Suteepat (tianissimo)](https://github.com/tianissimo)
- [David (davidavz)](https://github.com/davidavz)
- [Lialosiu](https://github.com/lialosiu)
- [Eric Pfeiffer (computerfr33k)](https://github.com/computerfr33k)
- [Orette](https://github.com/orette)
- [Jack Fletcher (Kauhat)](https://github.com/Kauhat)
- [Bo-Yi Wu (appleboy)](https://github.com/appleboy)
- [Amin Mkh (AminMkh)](https://github.com/AminMkh)
- [Matthew Tonkin Dunn (mattythebatty)](https://github.com/mattythebatty)
- [Zhivitsa Kirill (zhikiri)](https://github.com/zhikiri)
- [Benmag](https://github.com/benmag)
**Awesome People:**
- [Contributors](https://github.com/LaraDock/laradock/graphs/contributors)
- [Supporters](https://github.com/LaraDock/laradock/issues?utf8=%E2%9C%93&q=)
2015-08-21 21:53:44 +02:00
## License
[MIT License](https://github.com/laradock/laradock/blob/master/LICENSE) (MIT)