12 releases (6 breaking)

0.7.0 Feb 21, 2021
0.6.0 Dec 8, 2019
0.5.0 Apr 21, 2019
0.4.0 Dec 24, 2018
0.1.2 Jun 10, 2015

#7 in #ship

Download history 942/week @ 2023-11-23 588/week @ 2023-11-30 714/week @ 2023-12-07 669/week @ 2023-12-14 504/week @ 2023-12-21 798/week @ 2023-12-28 547/week @ 2024-01-04 545/week @ 2024-01-11 794/week @ 2024-01-18 524/week @ 2024-01-25 560/week @ 2024-02-01 442/week @ 2024-02-08 862/week @ 2024-02-15 454/week @ 2024-02-22 940/week @ 2024-02-29 502/week @ 2024-03-07

2,807 downloads per month
Used in fewer than 10 crates

MIT license

150KB
4.5K SLoC

shiplift

GitHub Actions MIT licensed Released API docs Master API docs

a rust interface for maneuvering docker containers

install

Add the following to your Cargo.toml file

[dependencies]
shiplift = "0.8"

usage

Many small runnable example programs can be found in this repository's examples directory.

planned changes

  • give image pull chunked json a proper type

Doug Tangren (softprops) 2015-2018


lib.rs:

Shiplift is a multi-transport utility for maneuvering docker containers

examples

let docker = shiplift::Docker::new();

match docker.images().list(&Default::default()).await {
    Ok(images) => {
        for image in images {
            println!("{:?}", image.repo_tags);
        }
    },
    Err(e) => eprintln!("Something bad happened! {}", e),
}

Dependencies

~10–25MB
~379K SLoC