formatting and small updates

This commit is contained in:
Mahmoud Zalt 2016-05-17 23:47:26 +03:00
parent e49836ba90
commit 36b49f5ae2
4 changed files with 10 additions and 10 deletions

View File

@ -55,7 +55,7 @@ It contains pre-packaged Docker Images that provides you a wonderful development
**Usage Overview:** Run `NGINX`, `MySQL` and `Redis`. **Usage Overview:** Run `NGINX`, `MySQL` and `Redis`.
```shell ```shell
docker-compose up -d nginx mysql redis docker-compose up nginx mysql redis
``` ```
<a name="features"></a> <a name="features"></a>
@ -89,7 +89,7 @@ docker-compose up -d nginx mysql redis
- Beanstalkd Console - Beanstalkd Console
- Data Volume - Data Volume
>Cannot find your container! we would love to have it as well. Consider contributing your container and adding it to this list. >If you can't find your container, build it yourself and add it to this list. Contributions are welcomed :)

View File

@ -5,8 +5,8 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
ADD ./laravel.ini /usr/local/etc/php/conf.d ADD ./laravel.ini /usr/local/etc/php/conf.d
ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/ ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/
RUN apt-get update && apt-get install \ RUN apt-get update && apt-get install -y \
libpq-dev -y \ libpq-dev \
libmemcached-dev \ libmemcached-dev \
curl curl

View File

@ -5,8 +5,8 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
ADD ./laravel.ini /usr/local/etc/php/conf.d ADD ./laravel.ini /usr/local/etc/php/conf.d
ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/ ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/
RUN apt-get update && apt-get install \ RUN apt-get update && apt-get install -y \
libpq-dev -y \ libpq-dev \
libmemcached-dev \ libmemcached-dev \
curl curl

View File

@ -5,10 +5,10 @@ MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
ADD ./laravel.ini /usr/local/etc/php/conf.d ADD ./laravel.ini /usr/local/etc/php/conf.d
ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/ ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/
RUN apt-get update && apt-get install \ RUN apt-get update && apt-get install -y \
libpq-dev -y \ libpq-dev \
curl \ libmemcached-dev \
libmemcached-dev curl
# Install extensions using the helper script provided by the base image # Install extensions using the helper script provided by the base image
RUN docker-php-ext-install \ RUN docker-php-ext-install \