rustainers 0.15.1

A simple, opinionated way to run containers for tests.
Documentation
#![doc = include_str!("../README.md")]
// TODO remove after moving images & example to another crate
#![allow(clippy::multiple_crate_versions)]

mod error;
pub use self::error::*;

mod container;
pub use self::container::*;

mod image;
pub use self::image::*;

mod port;
pub use self::port::*;

mod id;
pub(crate) use self::id::Id;

pub(crate) mod cmd;

pub(crate) mod version;

pub(crate) mod io;

/// Runners like docker, podman, ...
pub mod runner;

/// Provided images like postgres, redis, ...
pub mod images;

/// Provide support of compose
pub mod compose;

/// Provide tools
pub mod tools;