dockerode icon indicating copy to clipboard operation
dockerode copied to clipboard

Docker + Node = Dockerode (Node.js module for Docker's Remote API)

Results 86 dockerode issues
Sort by recently updated
recently updated
newest added

As per the example at https://github.com/apocas/dockerode/blob/master/examples/logs.js, it would seem that `container.logs` always returns a stream, however after updating to Docker 18.04, we're seeing this return a long string, newline delimited....

needs inspection

**Issue**: We say a project has duplicated dependencies if any package dependency occurs multiple times in the dependency tree. After analyzing the dependency tree, we have detected duplicate packages in...

I'm trying to get the details of a container using the `Container.inspect()` method. The container was successfully returned using `dockerode.getContainer(id)` but when I call `inspect()` on this container I only...

Would it at all be considered to expose this function ? Currently, I copied it in one of my projects. It would be nice if I could import it directly....

Hello. I am trying to list the files inside a container. I tried doing it like so: ```js container.infoArchive({path:"/"}).then(function(err, stream){ if(err) return console.log(err); stream.pipe(process.stdout); }); ``` But it returns an...

`onFinished ` callback of `new Docker().modem.followProgress` gets a `null` `err` but the result actually has error info Here is part of the `res` got printed ```js [ { stream: '.......'...

# System Docker Version: 20.10.8, build 3967b7d Dockerode Version: 3.3.0 # Issue Awaiting an image.push doesn't wait until the upload is complete. If a push is followed by a remove,...

I saw the "image.pull('tag')", but, I don't see where I can get "image" I think, a documentation it's good for things like that

It seems like the timeout mechanic is not properly working on newer node versions, I ran into this issue when upgrading from 12.13.0 -> 14.17.4. here is an example of...

The Responses are a little inconsistent. or my Understanding is wrong? In case of `container.stop()` - The message/ response is being sent in `reason ` but in case of `container.remove()`...