dockerode icon indicating copy to clipboard operation
dockerode copied to clipboard

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

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

Hello Team, what is equivalent to: ```docker run -d -p 8000:8000 node-docker``` I have tried: ``` const [data, container] = await docker.run( 'node-docker', [], [stdoutStream, stderrStream], { Tty: false, WorkingDir:...

Improves over #606 which was intended to fix #545. Currently, we only filter what comes in `src` array which might unexpectedly let pass files within directories. Also, it removes the...

Like in cli docker run command we have: docker run **--env-file ./env.list** ubuntu bash Is there any option in dockerode where we can load the environment variables from a file?

stale

It is not directly an issue. it is an feature idea. My Idea was that you can export a container to a .tar.gz-file or something else and import the exported...

Hi , i have three rest APIs , one to create a container and return container id , second one to exec a command and the third one to stream...

When I attempt to have a second port in the create options, it correctly creates the first, but not the second port. { "createOptions": { "Env": [ "DATA_DIR=/tmp/localstack/data", "DOCKER_HOST=unix:///var/run/docker.sock", "SERVICES=apigateway"...

I`m trying to get "live" stats of the container with the following code: ``` const stats = (await getContainer.stats({ stream: true })) as any; stats.on("data", (rawstat: Buffer) => { console.log(rawstat.toString());...

Hello, i have a problem with docker exec command output, when i try to run: ```js // modem.js var Docker = require("dockerode"); const path = require("path"); var docker = new...

Hello, I use dockerode on an Apple M1 ARM64 machine, I can't manage to build a simple image for the platform `linux/amd64`: Here is my `./Dockerfile`: ``` FROM nginx ```...

external