A tool to use docker and podman containers with rust.
For usage take a look at the Documentation
``` use contain_rs::{Podman, Client, Handle, Container, Image}; use std::str::FromStr;
let podman = Podman::new();
let container = Container::fromimage(Image::fromstr("docker.io/library/nginx").unwrap());
let handle = podman.create(container);
handle.run(); handle.wait();
// when the handle gets out of scope the container is stopped and removed ```
Clients are used for scheduling containers. There are currently two implementations available. One of them works with docker the other one uses podman.
Containers need image to run. You can create images like so:
``` use contain_rs::Image; use std::str::FromStr;
let image = Image::from_str("docker.io/library/nginx");
assert!(image.is_ok());
let latest = Image::from_str("docker.io/library/nginx:latest");
assert!(latest.is_ok()); ```