Update docker statement CMD on line 62 at day45
This commit is contained in:
parent
2593a59681
commit
297fe5e046
@ -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. |
|
| 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. |
|
| 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 |
|
| 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. |
|
| EXPOSE | To define which port through which to access your container application. |
|
||||||
| LABEL | To add metadata to the image. |
|
| LABEL | To add metadata to the image. |
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user