Usually, we first define the Dockerfile file, and then build the image file through the docker build command. Then, you can start a container instance based on the image file through docker run. Then when starting a container, you can change some parameters in the image file, and these parameters in the image file are often defined by the Dockerfile file. But not all definitions in the Dockerfile file can be redefined when starting the container. The Dockerfile instructions that cannot be overwritten by docker run are as follows:
1. Overwrite the ENTRYPOINT instruction The ENTRYPOINT instruction in the Dockerfile file is used to give the default entry point after the container is started.
2. Overwrite CMD command The CMD instruction in the Dockerfile file gives the default instructions to be executed after the container is started. When starting the container, you can set new command options for docker run to overwrite the CMD instruction in the Dockerfile file (the CMD instruction in the Dockerfile file will no longer be consulted). Here is an example:
If the ENTRYPOINT instruction is also declared in the Dockerfile file, the above instructions will be appended to the ENTRYPOINT instruction as parameters. 3. Override the EXPOSE instruction The EXPOSE instruction in the Dockerfile file is used to reserve ports for the host where the container is located. Apparently this is a feature of the runtime container, so docker run can conveniently override that instruction. Here is an example:
4. Override ENV directive The ENV instruction in the Dockerfile file is used to set the environment variables in the container. When starting a container, the following environment variables are automatically set for the container:
docker run can conveniently override this instruction. Here is an example: declare -x HOME="/" declare -x HOSTNAME="85bc26a0e200" declare -x OLDPWD declare -x PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" declare -x PWD="/" declare -x SHLVL="1" declare -x deep="purple" Setting or overriding environment variables via scripts 5. Override the VOLUME instruction The VOLUME instruction in the Dockerfile is used to set data volumes for the container.
6. Overwrite USER command The default user inside the container is root (uid=0).
Docker run supports the following forms of -u:
7. Override the WORKDIR directive The WORKDIR instruction in the Dockerfile file is used to set the working directory for subsequent instructions. If the path does not exist, it is created even if it is not used in subsequent instructions. In one, multiple WORKDIRs can exist. For relative paths, subsequent instructions inherit from the previous instruction. In WORKDIR, you can reference previously defined environment variables.
Reference Links: https://docs.docker.com/engine/reference/run/ https://docs.docker.com/engine/reference/builder/ Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: Implementing countdown effect with javascript
>>: JavaScript to achieve drop-down menu effect
Preface This article mainly introduces the releva...
<br />If only XHTML and CSS were object-orie...
Environmental requirements: IP hostname 192.168.1...
clip-path CSS properties use clipping to create t...
To perform incremental backup of the MySQL databa...
What is JSX JSX is a syntax extension of Javascri...
First, let me show you the finished effect Main i...
MYSQL 5.6 Deployment and monitoring of slave repl...
Table of contents variable Use meaningful and pro...
Related articles: Beginners learn some HTML tags ...
Copy code The code is as follows: <!DOCTYPE ht...
1. What is the use of slow query? It can record a...
1. Purpose Write a Flask application locally, pac...
<br />This article has briefly explained the...
This article records some major setting changes w...