node-sdk
node-sdk copied to clipboard
Docker CLI gRPC JavaScript SDK
Bumps [ws](https://github.com/websockets/ws) from 7.3.0 to 7.5.10. Release notes Sourced from ws's releases. 7.5.10 Bug fixes Backported e55e5106 to the 7.x release line (22c28763). 7.5.9 Bug fixes Backported bc8bd34e to the...
Using `undici` is a great choice, but bundling it with the app could be offputting for anyone who's currently using e.g. `axios`, `got`, or pure Node HTTP calls (or even...
**- What I did** guess Attach `stdout`, `stderr` or `stream` flags must be set if parameter is defined to collect those. closes https://github.com/docker/node-sdk/issues/62 **- How I did it** **- How...
**- What I did** introduce imagePull as nobody expect "pull" to be actually supported through imageCreate **- How I did it** **- How to verify it** **- Human readable description...
`stdout` can be `null` according to the documentation. https://github.com/docker/node-sdk/blob/47ac3bcd0a6e9f0d4e5a7192e293437ddca0ae55/lib/docker-client.ts#L1630-L1643 But when it _is_ `null` an error is thrown stating `stdout is required to process stream`. https://github.com/docker/node-sdk/blob/47ac3bcd0a6e9f0d4e5a7192e293437ddca0ae55/lib/docker-client.ts#L1647-L1678
Hi, I have an exposed docker engine running on a remote local server (tcp://remoteip:2375) and then initialize the client with `await DockerClient.fromDockerHost('tcp://remoteip:2735')` which connects properly. But when I call any...
Currently, `DockerClient` can't be used without `ssh2` (a very large dependency) being in the dependency tree, despite it only being used in one branch of `DockerClient.fromDockerHost`. If consumers don't connect...
Bumps the npm_and_yarn group with 1 update in the / directory: [glob](https://github.com/isaacs/node-glob). Updates `glob` from 11.0.3 to 12.0.0 Changelog Sourced from glob's changelog. changeglob 12 Remove the unsafe --shell option....
**- What I did** detect standard HTTP status and convert into SDK error types ```markdown changelog SDK throw Errors for standard status codes ``` **- A picture of a cute...
I would be nice to support the [bun.js](https://bun.com/) runtime, but we'll first need to wait for these bun.js issues to be addressed: - https://github.com/oven-sh/bun/issues/14498 - https://github.com/oven-sh/bun/issues/4145