diff --git a/README.md b/README.md
index af7c9f04..15f9d5ae 100644
--- a/README.md
+++ b/README.md
@@ -55,7 +55,7 @@ It contains pre-packaged Docker Images that provides you a wonderful development
**Usage Overview:** Run `NGINX`, `MySQL` and `Redis`.
```shell
-docker-compose up -d nginx mysql redis
+docker-compose up nginx mysql redis
```
@@ -89,7 +89,7 @@ docker-compose up -d nginx mysql redis
- Beanstalkd Console
- 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 :)
diff --git a/php/Dockerfile-php-55 b/php/Dockerfile-php-55
index 4c2a7732..93d82c52 100644
--- a/php/Dockerfile-php-55
+++ b/php/Dockerfile-php-55
@@ -5,8 +5,8 @@ MAINTAINER Mahmoud Zalt
ADD ./laravel.ini /usr/local/etc/php/conf.d
ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/
-RUN apt-get update && apt-get install \
- libpq-dev -y \
+RUN apt-get update && apt-get install -y \
+ libpq-dev \
libmemcached-dev \
curl
diff --git a/php/Dockerfile-php-56 b/php/Dockerfile-php-56
index baa26a7c..5da34488 100644
--- a/php/Dockerfile-php-56
+++ b/php/Dockerfile-php-56
@@ -5,8 +5,8 @@ MAINTAINER Mahmoud Zalt
ADD ./laravel.ini /usr/local/etc/php/conf.d
ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/
-RUN apt-get update && apt-get install \
- libpq-dev -y \
+RUN apt-get update && apt-get install -y \
+ libpq-dev \
libmemcached-dev \
curl
diff --git a/php/Dockerfile-php-70 b/php/Dockerfile-php-70
index e6b34160..61f21d07 100644
--- a/php/Dockerfile-php-70
+++ b/php/Dockerfile-php-70
@@ -5,10 +5,10 @@ MAINTAINER Mahmoud Zalt
ADD ./laravel.ini /usr/local/etc/php/conf.d
ADD ./laravel.pool.conf /usr/local/etc/php-fpm.d/
-RUN apt-get update && apt-get install \
- libpq-dev -y \
- curl \
- libmemcached-dev
+RUN apt-get update && apt-get install -y \
+ libpq-dev \
+ libmemcached-dev \
+ curl
# Install extensions using the helper script provided by the base image
RUN docker-php-ext-install \