Skip to content

Commit 3faa906

Browse files
committed
Stop promisifying the docker client
1 parent 1ccf426 commit 3faa906

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import Docker from 'dockerode'
22
import bluebird from 'bluebird'
33

4-
const dockerClient = bluebird.promisifyAll(new Docker({
4+
const dockerClient = new Docker({
55
Promise: bluebird,
6-
}))
6+
})
77

88
export default dockerClient

0 commit comments

Comments
 (0)