summaryrefslogtreecommitdiffstats
path: root/examples/containercopyinto.rs
blob: 63f0a2d9307e347967ad0f11ef46d725c95a39f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use shiplift::Docker;
use std::env;
use tokio::prelude::Future;

fn main() {
    let docker = Docker::new();
    let path = env::args()
        .nth(1)
        .expect("Usage: cargo run --example containercopyinto -- <local path> <container>");
    let id = env::args()
        .nth(2)
        .expect("Usage: cargo run --example containercopyinto -- <local path> <container>");

    use std::{fs::File, io::prelude::*};

    let mut file = File::open(&path).unwrap();
    let mut bytes = Vec::new();
    file.read_to_end(&mut bytes)
        .expect("Cannot read file on the localhost.");

    let fut = docker
        .containers()
        .get(&id)
        .copy_file_into(path, &bytes[..])
        .map_err(|e| eprintln!("Error: {}", e));
    tokio::run(fut);
}