boondock icon indicating copy to clipboard operation
boondock copied to clipboard

Docker daemon API in Rust

Results 15 boondock issues
Sort by recently updated
recently updated
newest added

The ability to create containers is super important for a library like this.

Hi Folks, In these days, much of the linux kernels running doesnt have the Cgroup Swap support activated and because of this, there is no field called 'swap' for the...

Hi, I saw the examples, but there is no way I can understand any of the code, for example, I want to make a container from an image, there is...

So I've been using the lib like so : ```sh user@computer: ~$ cat src/main.rs extern crate boondock; use boondock::Docker; fn main() { let docker = Docker::connect_with_defaults().unwrap(); } user@computer: ~$ #...

Hi, i'm having an issue with the container creation method on the 'feature/containers' branch [here](https://github.com/Innectic/boondock/tree/feature/containers) Docker keeps returning 'EOF' even though my headers and body are present. I've tested it...

docs.rs cannot build the docs for `boondock`. The error seem to be related to openssl. Are the docs stored someplace else? Here is the [log from docs.rs](https://docs.rs/crate/boondock/0.0.50/builds/88633) ``` --- stdout...

We currently have no way to list stopped containers, probably because something has changed in the protocol.

Right now, we rely on OpenSSL to handle `https`, which means that we need to special-case everything for the Mac. Ideally, this would mean using [native-tls](https://github.com/sfackler/rust-native-tls), which would in turn...

This would be really useful to my project. I don't know if you have any plan for this, maybe it's out of scope for cage. I tried to give a...