dockerode icon indicating copy to clipboard operation
dockerode copied to clipboard

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

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

Firstly, thanks for the great library. When building an image from a repository that contains a `.dockerignore` file there is an issue. If this `.dockerignore` file contains `Dockerfile` itself, then...

Something changed in recent update of docker engine. It does not seem like dockerode is able to write to STDIN of the container if it is attached in this way....

Hello, I want to create a container with "createContainer" and on later stage to exec command against it with "container.exec". I can read the stream from "container.exec", but can't read...

First thank you for your great work to maintain this library. I'm writing a dummy Electron app with electron >= 20 making use of `dockerode`, and I cannot have cpu-features...

I've tried following the `exec_running_container.js` example code. I've made some modifications already to match new APIs but even after that the example is missing key functionality like utilizing promises or...

stale

I would like to be able to clone a container completely (copy its exact config). So I can create a new one with the same config. My main goal is...

stale

I have my source code in ~/projects/repo, and I have a Dockerfile inside ~/dockerfiles. I'm trying to write a script where I can pass in the source code path, like...

**example:** ``` // process.on('uncaughtException', function (err) { // console.error("uncaughtException:", err.stack); // }); const Docker = require('dockerode'); try { let docker = new Docker({ host: "127.0.0.1", protocol: "ssh", username: "root", sshOptions:...

I already have a container running which as a Minecraft server instance running in it. I'm trying to attach to the container and send a server command to the console...

I managed to get BuildKit build to work! It is not perfect yet, but it works most of the time for me. To do this, dockerode needs to create a...

enhancement