How to show the run command of a docker container

前端 未结 11 1270
萌比男神i
萌比男神i 2020-11-27 10:24

I use a third party GUI (Synology Docker package) to setup a docker container. However, it\'s limitation makes me need to run the container from the command line. (I want to

11条回答
  •  遥遥无期
    2020-11-27 10:44

    Use following command to get the arguments for all containers docker inspect -f "{{.Name}} {{.Path}} {{.Args}}" $(docker ps -a -q)

提交回复
热议问题