Crates.io | harbourmaster |
lib.rs | harbourmaster |
version | 0.5.0 |
source | src |
created_at | 2019-05-24 08:10:34.517359 |
updated_at | 2021-11-30 15:44:40.43098 |
description | Convenient, high-level abstractions of running Docker containers |
homepage | https://github.com/danieleades/harbourmaster |
repository | |
max_upload_size | |
id | 136568 |
size | 23,912 |
Harbourmaster is a library of high-level abstractions of Docker objects.
Harbourmaster is built on top of the excellent 'shiplift', but provides an object-oriented interface that is a little easier to work with for some use cases.
Particularly useful for unit testing that involves spinning up and then removing Docker containers.
use harbourmaster::Container;
#[tokio::main]
async fn main() {
let image = "alpine";
println!("creating container!");
let container = Container::new(image).await.unwrap();
println!("container created!");
println!("removing container!");
container.delete().await.unwrap();
println!("container removed!");
}
Current version: 0.5.0
License: Apache-2.0