From e2593ab522630762b1bbc4030c72873b6d7016a6 Mon Sep 17 00:00:00 2001 From: Mahmoud Zalt Date: Fri, 22 Apr 2016 17:35:11 +0300 Subject: [PATCH] make submodule add optional in the docs --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6ed0aee4..b5b4437a 100644 --- a/README.md +++ b/README.md @@ -87,14 +87,19 @@ The Images links on [Docker Hub](https://hub.docker.com/u/laradock/) ## Installation -1 - Clone the `LaraDock` repository, in any of your `Laravel` projects *(using this command)*: +1 - Clone the `LaraDock` repository, in any of your `Laravel` projects: + +```bash +git clone https://github.com/LaraDock/laradock.git docker +``` + +Instead of `git clone` you can use `git submodule add` in case you are already using Git for your Laravel project *(Recommended)*: ```bash git submodule add https://github.com/LaraDock/laradock.git docker ``` ->This should create a `docker` folder, on the root directory of your Laravel project. - +>These commands should create a `docker` folder, on the root directory of your Laravel project.