From 5ebf018de4b36d50fe00230710e2f087ca2fe8c2 Mon Sep 17 00:00:00 2001 From: Micha Date: Thu, 26 Mar 2026 09:33:24 +0000 Subject: [PATCH] Version 1 --- infra/redis/docker-compose.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 infra/redis/docker-compose.yml diff --git a/infra/redis/docker-compose.yml b/infra/redis/docker-compose.yml new file mode 100644 index 0000000..2b7642a --- /dev/null +++ b/infra/redis/docker-compose.yml @@ -0,0 +1,16 @@ +services: + redis: + image: redis:7-alpine + container_name: Redis + restart: unless-stopped + command: redis-server --appendonly yes + + volumes: + - /mnt/user/appdata/redis:/data + + networks: + - backend_net + +networks: + backend_net: + external: true \ No newline at end of file