testcontainers 0.25.2

A library for integration-testing against docker containers from within Rust.
Documentation
#[cfg(feature = "reusable-containers")]
pub use self::image::ReuseDirective;
pub use self::{
    build_context::BuildContextBuilder,
    buildable::BuildableImage,
    containers::*,
    copy::{CopyDataSource, CopyToContainer, CopyToContainerCollection, CopyToContainerError},
    healthcheck::Healthcheck,
    image::{ContainerState, ExecCommand, Image, ImageExt},
    mounts::{AccessMode, Mount, MountTmpfsOptions, MountType},
    ports::{ContainerPort, IntoContainerPort},
    wait::{cmd_wait::CmdWaitFor, WaitFor},
};

mod buildable;
mod image;

pub(crate) mod async_drop;
pub(crate) mod build_context;
pub mod client;
pub(crate) mod containers;
pub(crate) mod copy;
pub(crate) mod env;
pub mod error;
pub(crate) mod healthcheck;
pub mod logs;
pub(crate) mod mounts;
pub(crate) mod network;
pub mod ports;
pub mod wait;