mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-20 21:47:02 +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");
|
||
|
|
};
|