summaryrefslogtreecommitdiffstats
path: root/examples/imagepull.rs
blob: 84a61498deb9ab96d24c82cab02daf4395c1deaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// cargo run --example imagepull busybox

use shiplift::{Docker, PullOptions};
use std::env;
use tokio::prelude::{Future, Stream};

fn main() {
    env_logger::init();
    let docker = Docker::new();
    let img = env::args()
        .nth(1)
        .expect("You need to specify an image name");
    let fut = docker
        .images()
        .pull(&PullOptions::builder().image(img).build())
        .for_each(|output| {
            println!("{:?}", output);
            Ok(())
        })
        .map_err(|e| eprintln!("Error: {}", e));
    tokio::run(fut);
}