Search code examples
dockerremoteapi

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


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


Solution

  • 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.