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

#660 in Unix APIs

Download history 1697/week @ 2025-10-27 2289/week @ 2025-11-03 1542/week @ 2025-11-10 1503/week @ 2025-11-17 9843/week @ 2025-11-24 12238/week @ 2025-12-01 9249/week @ 2025-12-08 9055/week @ 2025-12-15 1923/week @ 2025-12-22 189/week @ 2025-12-29 14468/week @ 2026-01-05 19590/week @ 2026-01-12 17155/week @ 2026-01-19 24653/week @ 2026-01-26 20702/week @ 2026-02-02 24097/week @ 2026-02-09

86,636 downloads per month
Used in fewer than 9 crates

MIT license

150KB
4.5K SLoC

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),
}

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

Dependencies

~14–32MB
~379K SLoC