dockworker icon indicating copy to clipboard operation
dockworker copied to clipboard

Docker daemon API client in Rust

Results 30 dockworker issues
Sort by recently updated
recently updated
newest added

After some test i found that > curl --unix-socket /var/run/docker.sock http:/v1.24/containers/ad31ebf6f8b1c13e9fd725eaefc53225defe5bc7cd4dffdff486dc5be673a64f/stats\?stream disable stream and enable one-shot and that > curl --unix-socket /var/run/docker.sock http:/v1.24/containers/ad31ebf6f8b1c13e9fd725eaefc53225defe5bc7cd4dffdff486dc5be673a64f/stats\?one-shot do the opposite, so I fixed the...

`docker image build` has been deprecated as of v23.0 [1], so it would be good if support for the `buildx` command could be introduced. [1] https://docs.docker.com/engine/deprecated/#legacy-builder-for-linux-images

Hi there, I'm using `async-std` as opposed to Tokio and getting this error when trying to `Docker::build_image()`. Is there any chance of `async-std` support?

https://docs.docker.com/engine/api/v1.42/#tag/Container/operation/ContainerCreate

- add docker pull ( `POST image/create`) test

Support `/images/search` api.

enhancement

I have some shell scripts that control docker on a remote system using an ssh connection to that machine. I'd like to upgrade those shell scripts to Rust. I understand...

Hello! I'm testing the lib in some projects and i need to update a continers enviroments variables. The first idea was remove and create a new container with a new...

`/containers/{id}/top` may returns `null` for `Processes` field. ``` docker.run_container(&container); docker.container_top(&container); // immediate call may fail ```

bug

Right now, `dockworker` pulls in a ton of dependencies, the biggest probably being the entirety of the `hyper` stack and `tokio`: ![graph](https://user-images.githubusercontent.com/22377202/79350560-e62f2680-7f37-11ea-9849-91c473e49e42.png) *(generated with cargo-deps, see [the README](https://github.com/m-cat/cargo-deps#dependency-kinds) for the...