docker-api icon indicating copy to clipboard operation
docker-api copied to clipboard

Docker Remote API driver for node.js. It uses the same modem than dockerode, but the interface is promisified and with a fancier syntax.

Results 32 docker-api issues
Sort by recently updated
recently updated
newest added

@AgustinCB Getting the error "TypeError: data.pipe is not a function" While building an image please find the code below ``` const Docker = require('node-docker-api').Docker; const docker = new Docker({ socketPath:...

bug

Is this project still supported? It seems that the new Docker Swarm capabilities are missing, i.e. commands such as `docker stack ls` are not implemented. Is this planned? Currently, I...

enhancement

Hi, How can i make an exec command with the interactive mode ?? I'm looking for a way to do `docker exec -it test /bin/bash` with docker api. Thanks for...

question

https://github.com/AgustinCB/docker-api/blob/eec56266f613cebc1ffe7301f6221bc223e03486/docs/index.html#L295 The *Fetch events from docker* example in `docs/index.html` is using `container.events` which throws an error. Is this an older version of the API? It doesn't match the example code...

documentation fix

How do I pass ```--rm``` option when creating a container to make sure it automatically gets killed once it stops after CMD execution?

question

{ Error: (HTTP code 409) unexpected - Conflict. The container name "/test" is already in use by container "70f415ef635ece943bee6c935f78b0912a88573e95ab8f7fe9d24d397e5e8379". You have to remove (or rename) that container to be able...

bug

I'm using it to collect data from containers by minute. But it's increase docker open files, the limit is 65556, and in one the the limit went from 3000 to...

help wanted

I noticed today, that using `promisifyStream`, the messages don't come one by one. This makes it hard to parse and work on the JSON strings of pull messages. It looks...

enhancement

For example if I run ```js 'use strict'; const {Docker} = require('node-docker-api'); const promisifyStream = stream => new Promise((resolve, reject) => { stream.on('data', data => console.log(data.toString())) stream.on('end', resolve) stream.on('error', reject)...

documentation fix

Failures are random and likely due to sync problems.

bug