目录
一 docker的cmd指令
the main purpose of a cmd is to provide defaults for an executing container.
cmd在容器运行的时候提供一些命令及参数,用法如下:
cmd ["executable","param1","param2"] (exec form, this is the preferred form) cmd ["param1","param2"] (as default parameters to entrypoint) cmd command param1 param2 (shell form)
- 第一种用法:运行一个可执行的文件并提供参数。
- 第二种用法:为entrypoint指定参数。
- 第三种用法(shell form):是以”/bin/sh -c”的方法执行的命令。
如你指定:
cmd ["/bin/echo", "this is a echo test"]
build后运行(假设镜像名为ec):
docker run ec
就会输出: this is a echo test
是不是感觉很像开机启动项,你可以暂时这样理解。
注意点:
docker run命令如果指定了参数会把cmd里的参数覆盖:
这里说明一下,如:docker run -it ubuntu /bin/bash 命令的参数是指/bin/bash 而非 -it ,-it只是docker 的参数,而不是容器的参数。
同样是上面的ec镜像启动:
docker run ec /bin/echo hello
就不会输出:this is a echo test,因为cmd命令被”/bin/bash”覆盖了。
二 实战
[root@localhost df]# cat dockerfile from busybox cmd ["/bin/echo", "this is a echo test"] [root@localhost df]# docker build -t test . sending build context to docker daemon 2.048kb step 1/2 : from busybox ---> 6ad733544a63 step 2/2 : cmd /bin/echo this is a echo test ---> running in fa8af9fca520 ---> c653707895ae removing intermediate container fa8af9fca520 successfully built c653707895ae successfully tagged test:latest [root@localhost df]# docker run test this is a echo test [root@localhost df]# docker run test /bin/echo hello hello
三 一些说明和注意
一个dockerfile仅仅最后一个cmd起作用。
执行文件或者没有执行文件(entrypoint提供),为执行容器提供缺省值。
如果cmd配合entrypoint那么他们的格式都需要是json数组格式,cmd用来提供参数。
cmd非参数模式,shell exec 当运行一个镜像的时候会执行。
shell格式 相当于指令在/bin/sh -c执行,如果不想使用shell格式,就需要使用数组格式,参数为单独字符串。
from ubuntu cmd echo "this is a test." | wc - from ubuntu #需要程序地址 cmd ["/usr/bin/wc","--help"]
如果容器每次都执行则考虑cmd和entrypoint结合
docker run覆盖cmd
run镜像构建,并提交交结果。cmd构建阶段不执行,容器启动时候执行。
每个dockfile只能有一条cmd命令,如果指定了多条,只有最后一条会执行。
如果用户启动容器时指定了运行命令,则会覆盖cmd指定命令。
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。