What is equivalent remote api command to 'docker run -d'?

泄露秘密 提交于 2019-12-08 19:16:07

问题


I'm trying to call docker commands via remote api.

Docker remote api does not seem to have 'Detached mode' option. http://docs.docker.io/en/latest/commandline/command/run/

I could use this app in the bash, and I would like to use this via remote api. https://github.com/grigio/docker-stringer


回答1:


Indeed, the remote API does not have a 'detach' mode as the 'attach' mode is an extra endpoint.

If you want to run in detach mode with the remote API, simply create and start your container without attaching to it.

If the container still shuts down immediately, use docker logs <container id> to check for errors. The problem might have nothing to do with detach.




回答2:


It's important to understand the "docker run" command encapsulates a series of commands from an API perspective:

  • pull image (if not available locally)
  • create the container
  • attach to the container
  • starts the container

While "docker run -d" is the same thing as above but without the "attach" step.

Therefore, you need to create and then start your container when using the remote API.

If the container still shuts down immediately, use docker logs <container id> to check for errors. The problem might have nothing to do with detach.




回答3:


As far as I can tell, the remote API equivalent of the -i CLI option is "OpenStdin": true in the call to /containers/create. Without this it seems that anything reading from stdin receives EOT.

This is where stdin is initialized (or not initialized) as a pipe to the container, I haven't tracked it down past that.



来源:https://stackoverflow.com/questions/17776415/what-is-equivalent-remote-api-command-to-docker-run-d

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!