mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-31 11:49:14 +01:00
6 lines
172 B
TypeScript
6 lines
172 B
TypeScript
import { RedisContainer } from "@testcontainers/redis";
|
|
|
|
export const createRedisContainer = () => {
|
|
return new RedisContainer("redis:latest").withPassword("homarr");
|
|
};
|