Skip to content

Tags: faradayio/boondock

Tags

v0.1.0-alpha.1

Toggle v0.1.0-alpha.1's commit message
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.50

Toggle v0.0.50's commit message
v0.0.50: Allow `Env` to be null Thank you to @khuey!

v0.0.49

Toggle v0.0.49's commit message
v0.0.49: Switch to serde, and handle null RepoTags A big thank you to @griff!

v0.0.48

Toggle v0.0.48's commit message
boondock v0.0.48: Correct links crates.io (fixes #9) 

v0.0.47

Toggle v0.0.47's commit message
v0.0.47: Export `UnspecifiedObject` type for compatibility with stabl… …e Rust

v0.0.46

Toggle v0.0.46's commit message
v0.0.46: Make more JSON fields optional, improve error messages I'm trying to get this to run correctly against real-world data, and I'm discovering some other fields that are allowed to be NULL.

v0.0.45

Toggle v0.0.45's commit message
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.44

Toggle v0.0.44's commit message
v0.0.44: Mark `ExposedPorts` as optional 

v0.0.43

Toggle v0.0.43's commit message
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.