testcontainers_modules/redis/mod.rs
1mod stack;
2mod standalone;
3
4/// Port that the [`Redis`] container has internally
5/// Can be rebound externally via [`testcontainers::core::ImageExt::with_mapped_port`]
6///
7/// [`Redis`]: https://redis.io/
8pub const REDIS_PORT: u16 = 6379;
9
10pub use stack::RedisStack;
11pub use standalone::Redis;