How to find the CMD command of a docker image?

后端 未结 2 677
抹茶落季
抹茶落季 2021-02-05 00:52

I have a docker image installed and I\'d like to check what is its CMD command. Is there any cli command to do so? for example, I\'d like it to tell me that this docker image CM

2条回答
  •  礼貌的吻别
    2021-02-05 01:34

    You can use the docker inspect command

    docker inspect --format='{{.Config.Cmd}}' 
    docker inspect -f '{{.Config.Cmd}}' 
    

    That is used, for instance, to "list full command of running/stopped container in Docker".

提交回复
热议问题