Tags: faradayio/boondock
Tags
v0.1.0-alpha.1: Port to rustls and async Rust This uses rustls and async Rust. However, the `stats` and `create_image` features are disabled in this alpha version.
v0.0.45: Remove `get` from most APIs and add `containers` options This fixes a number of issues: - We can now list stopped containers (this was broken against the latest Docker daemon). - We can list containers without passing `size`, which speeds things up at least 170x. - We no longer have `get_` prefixes on our public APIs, giving us a more "Rusty" style. - We support several other options to `containers`, but alas, not yet filters (which are a bit more complicated).
v0.0.43: Docker 1.12 & Windows support, other updates This is a fork of Graham Lee's extremely useful `rust-docker` so that we can overhaul APIs as needed for `cage` and make new releases rapidly. Changes since the last `rust-docker` release include: - Merge Hyper support from Toby Lawrence. - Merge container example from Paul Colomiets. - Port to Windows (still experimental but it builds). - Allow OpenSSL to be disabled at compile time. - Add a `connect_with_defaults` that mimics Docker's logic for finding the daemon as closely as we can. - Remove unnecessary `&mut self` in the APIs. - Derive `Debug` for as many types as possible. - Convert error-handling to `error-chain`. - Partially update to support Docker 1.12. - Provide better error messages for failed JSON parses. - Provide an `Iterator` for container stats.