1
2
3
4
5
6
7
8
9
10
11
mod stack;
mod standalone;

/// Port that the [`Redis`] container has internally
/// Can be rebound externally via [`testcontainers::core::ImageExt::with_mapped_port`]
///
/// [`Redis`]: https://redis.io/
pub const REDIS_PORT: u16 = 6379;

pub use stack::RedisStack;
pub use standalone::Redis;