From adc9a14db49f7e8ffd7cecb788bb9b560a7a3aae Mon Sep 17 00:00:00 2001 From: Nathan Hsieh Date: Wed, 3 Sep 2014 17:53:45 -0700 Subject: [PATCH] small typo. fixed broken code snippet Docker-DCO-1.1-Signed-off-by: Nathan Hsieh (github: nhsiehgit) --- docs/sources/userguide/usingdocker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sources/userguide/usingdocker.md b/docs/sources/userguide/usingdocker.md index ea13122fd6..40229d4ab6 100644 --- a/docs/sources/userguide/usingdocker.md +++ b/docs/sources/userguide/usingdocker.md @@ -114,8 +114,8 @@ We've specified an image: `training/webapp`. This image is a pre-built image we've created that contains a simple Python Flask web application. -Lastly, we've specified a command for our container to run: `python -app.py`. This launches our web application. +Lastly, we've specified a command for our container to run: `python app.py`. +This launches our web application. > **Note:** > You can see more detail on the `docker run` command in the [command