-
-
Notifications
You must be signed in to change notification settings - Fork 486
Closed
Labels
Description
Starting with version 2.5.0 creating volume fails:
const Docker = require('dockerode')
const docker = new Docker({
socketPath: '/var/run/docker.sock',
})
docker.createVolume({}, (err, volume) => {
if(err) {
console.trace(err);
return;
}
console.log('ok')
})
This returns error Error: (HTTP code 400) unexpected - got EOF while reading request body
Docker version 18.06.1-ce
Works ok with v2.4.3
Reactions are currently unavailable