From b68ad3acedc8fc23b2f8e9c89a42652c9409e9d0 Mon Sep 17 00:00:00 2001 From: Jeffery Bradberry Date: Wed, 16 Nov 2016 04:43:22 -0500 Subject: [PATCH] There are two differences Add missing word. --- compose/reference/run.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/reference/run.md b/compose/reference/run.md index 89ebca1314..5717694f66 100644 --- a/compose/reference/run.md +++ b/compose/reference/run.md @@ -26,7 +26,7 @@ Runs a one-time command against a service. For example, the following command st docker-compose run web bash -Commands you use with `run` start in new containers with the same configuration as defined by the service' configuration. This means the container has the same volumes, links, as defined in the configuration file. There two differences though. +Commands you use with `run` start in new containers with the same configuration as defined by the service' configuration. This means the container has the same volumes, links, as defined in the configuration file. There are two differences though. First, the command passed by `run` overrides the command defined in the service configuration. For example, if the `web` service configuration is started with `bash`, then `docker-compose run web python app.py` overrides it with `python app.py`.