Reputation: 245
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
Upvotes: 10
Views: 3990
Reputation: 1387
It's important to understand the "docker run" command encapsulates a series of commands from an API perspective:
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
.
Upvotes: 6
Reputation: 121492
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
.
Upvotes: 8
Reputation: 5533
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.
Upvotes: 2