Document need for --recursive when cloning docs (#3925)

Docker docs use git submodules.  Docs on how to clone and then serve
using Jekyll should recommend `--recursive`.

Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
This commit is contained in:
Trapier Marshall 2017-07-24 21:38:49 -04:00 committed by John Mulhausen
parent d339a7c17d
commit 66f1d5fa0c
2 changed files with 3 additions and 3 deletions

View File

@ -111,7 +111,7 @@ You have three options:
1. On your local machine, clone this repo and run our staging container: 1. On your local machine, clone this repo and run our staging container:
```bash ```bash
git clone https://github.com/docker/docker.github.io.git git clone --recursive https://github.com/docker/docker.github.io.git
cd docker.github.io cd docker.github.io
docker-compose up docker-compose up
``` ```
@ -134,7 +134,7 @@ You have three options:
a. Clone this repo by running: a. Clone this repo by running:
```bash ```bash
git clone https://github.com/docker/docker.github.io.git git clone --recursive https://github.com/docker/docker.github.io.git
``` ```
b. Install Ruby 2.3 or later as described in [Installing Ruby](https://www.ruby-lang.org/en/documentation/installation/). b. Install Ruby 2.3 or later as described in [Installing Ruby](https://www.ruby-lang.org/en/documentation/installation/).

View File

@ -11,7 +11,7 @@ If you find a typo or mismatch between the API and this documentation, please se
To run it locally: To run it locally:
```none ```none
$ git clone https://github.com/docker/docker.github.io.git $ git clone --recursive https://github.com/docker/docker.github.io.git
$ make release $ make release
``` ```