shiplift 0.6.0

A Rust interface for maneuvering Docker containers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use shiplift::Docker;
use tokio::prelude::Future;

fn main() {
    let docker = Docker::new();
    tokio::run(
        docker
            .info()
            .map(|info| println!("info {:?}", info))
            .map_err(|e| eprintln!("Error: {}", e)),
    );
}