2个版本
0.5.2 | 2019年10月13日 |
---|---|
0.5.1 | 2019年10月13日 |
#16 in #ship
每月 37 次下载
125KB
3.5K SLoC
警告
这里没有官方的,只是一个测试
lib.rs
:
Shiplift 是一个多传输工具,用于操作 docker 容器
示例
use tokio::prelude::Future;
let docker = shiplift::Docker::new();
let fut = docker.images().list(&Default::default()).map(|images| {
println!("docker images in stock");
for i in images {
println!("{:?}", i.repo_tags);
}
}).map_err(|e| eprintln!("Something bad happened! {}", e));
tokio::run(fut);
依赖项
~12–24MB
~376K SLoC