Boondock: Rust library for talking to the Docker daemon

Latest version License Build Status Build status Documentation

This is a work in progress!

This is a fork of Graham Lee's highly useful rust-docker library, with hyper support from Toby Lawrence and various other recent patches integrated.

It also adds:

This library is used by the development tool cage to talk to the Docker daemon. You're welcome to use it for other things, and we're happy to accept pull requests!

(Also, the maintainers of rust-docker are totally welcome to use any code that they like from this fork. We're mostly maintaining this as a fork so that we can have very quick turnaround times when we need to fix an issue with cage, and we have no objections to this code being merged back upstream.)

Examples

For example code, see the examples directory.

OpenSSL

On the Mac, you can set up OpenSSL as follows:

```bash brew install openssl brew link --force openssl

export OPENSSLINCLUDEDIR=/usr/local/opt/openssl/include export OPENSSLROOTDIR=/usr/local/opt/openssl ```

Alternatively, you can build without OpenSSL by passing --no-default-features to cargo, or specifying default-features = false in a Cargo.toml file.

Contributing

  1. Fork it
  2. Create your a new remote upstream repository (git remote add upstream git@github.com:faradayio/boondock.git)
  3. Commit your changes (git commit -m 'Add some feature')
  4. Push to the branch (git push origin your-branch)
  5. Create new Pull Request