From 297fe5e046c80ab67a696ad001e8eb85fc5a4f84 Mon Sep 17 00:00:00 2001 From: Prabesh Magar <53116461+prabmagar@users.noreply.github.com> Date: Sun, 22 May 2022 21:38:44 +0545 Subject: [PATCH] Update docker statement CMD on line 62 at day45 --- Days/day45.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Days/day45.md b/Days/day45.md index 428e664..cc053a5 100644 --- a/Days/day45.md +++ b/Days/day45.md @@ -59,7 +59,7 @@ The following table shows some of the dockerfile statements we will be using or | COPY | To copy over files or directories from a specific location. | | ADD | As COPY, but also able to handle remote URLs and unpack compressed files. | | ENTRYPOINT | Command that will always be executed when the container starts. If not specified, the default is /bin/sh -c | -| .md | Arguments passed to the entrypoint. If ENTRYPOINT is not set (defaults to /bin/sh -c), the .mdwill be the commands the container executes. | +| CMD | Arguments passed to the entrypoint. If ENTRYPOINT is not set (defaults to /bin/sh -c), the CMD will be the commands the container executes. | | EXPOSE | To define which port through which to access your container application. | | LABEL | To add metadata to the image. |