From 7bd9befce0279f17605d380ef23610eb04e7face Mon Sep 17 00:00:00 2001 From: ajay143444 Date: Wed, 22 Apr 2020 13:39:22 +0530 Subject: [PATCH] contained by changed to contained in (#10663) contained by changed to contained in --- develop/develop-images/dockerfile_best-practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/develop/develop-images/dockerfile_best-practices.md b/develop/develop-images/dockerfile_best-practices.md index 5d4feeb2e4..daa07933f8 100644 --- a/develop/develop-images/dockerfile_best-practices.md +++ b/develop/develop-images/dockerfile_best-practices.md @@ -594,7 +594,7 @@ RUN set -o pipefail && wget -O - https://some.site | wc -l > /number [Dockerfile reference for the CMD instruction](/engine/reference/builder.md#cmd) -The `CMD` instruction should be used to run the software contained by your +The `CMD` instruction should be used to run the software contained in your image, along with any arguments. `CMD` should almost always be used in the form of `CMD ["executable", "param1", "param2"…]`. Thus, if the image is for a service, such as Apache and Rails, you would run something like `CMD