From d0c499329eb2f9ddb960224101208cb18d4731d7 Mon Sep 17 00:00:00 2001 From: Mazz Mosley Date: Wed, 1 Jul 2015 15:57:27 +0100 Subject: [PATCH] Add a note not to worry When reading through the code for the first time and seeing redis, those unfamiliar with docker first thought might be that they need to install redis. Adding this sentence helps make it clearer that this is not needed. Docker will take care of this in services. Signed-off-by: Mazz Mosley --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 43f52d016..24ed10270 100644 --- a/docs/index.md +++ b/docs/index.md @@ -75,7 +75,7 @@ Next, you'll want to make a directory for the project: $ cd composetest Inside this directory, create `app.py`, a simple web app that uses the Flask -framework and increments a value in Redis: +framework and increments a value in Redis. Don't worry if you don't have Redis installed, docker is going to take care of that for you when we [define services](#define-services): from flask import Flask from redis import Redis