summaryrefslogtreecommitdiffstats
path: root/examples/containercopyinto.rs
blob: 689e7afc09dc1f3a14bac7dc379a1e341d466eb4 (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, fs::File, io::Read};

#[tokio::main]
async 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>");

    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.");

    if let Err(e) = docker
        .containers()
        .get(&id)
        .copy_file_into(path, &bytes)
        .await
    {
        eprintln!("Error: {}", e)
    }
}