blackbirdchess-docker-dev/DOCUMENTATION/content/introduction/index.md
2017-04-14 17:46:35 -04:00

5.0 KiB

title type weight
Introduction index 1

A full PHP development environment for Docker.

Includes pre-packaged Docker Images, all pre-configured to provide a wonderful PHP development environment.

Laradock is well known in the Laravel community, as the project started with single focus on running Laravel projects on Docker. Later and due to the large adoption from the PHP community, it started supporting other PHP projects like Symfony, CodeIgniter, WordPress, Drupal...

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 rename env-example to .env.

cp env-example .env

3 - Run your containers:

docker-compose up -d nginx mysql redis beanstalkd

3 - Open your project's .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 :)

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 (Images)

In adhering to the separation of concerns principle as promoted by Docker, Laradock runs each software on its own Container. You can turn On/Off as many instances of as any container without worrying about the configurations, everything works like a charm.

  • Database Engines: MySQL - MariaDB - MongoDB - Neo4j - RethinkDB - PostgreSQL - Postgres Postgis.
  • Cache Engines: Redis - Memcached - Aerospike
  • PHP Servers: NGINX - Apache2 - Caddy
  • PHP Compilers: PHP FPM - HHVM
  • Message Queuing: Beanstalkd - Beanstalkd Console - RabbitMQ - RabbitMQ Console
  • Tools: PhpMyAdmin - Adminer - PgAdmin - ElasticSearch - Selenium - Certbot - Mailhog - Minio...

Laradock introduces the Workspace Image, as a development environment. It contains a rich set of helpful tools, all pre-configured to work and integrate with almost any combination of Containers and tools you may choose.

Workspace Image Tools PHP CLI - Composer - Git - Linuxbrew - Node - Gulp - SQLite - xDebug - Envoy - Deployer - Vim - Yarn...

You can choose, which tools to install in your workspace container and other containers, from the .env file.

If you modify docker-compose.yml, .env or any dockerfile file, you must re-build your containers, to see those effects in the running instance.

If you can't find your Software in the list, build it yourself and sumit it. 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.

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

Demo Video

What's better than a Demo Video:

  • Laradock v5.* (soon or never)
  • Laradock v4.*
  • Laradock v2.*
  • Laradock v0.3
  • Laradock v0.1

Chat with us

You are welcome to join our chat room on Gitter.

Gitter