From b9e990667c5a94b053ead78b92b95b85cf067849 Mon Sep 17 00:00:00 2001 From: Viren070 Date: Wed, 25 Jun 2025 18:16:11 +0100 Subject: [PATCH] feat: remove redis for stremthru --- apps/stremthru/compose.yaml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/apps/stremthru/compose.yaml b/apps/stremthru/compose.yaml index e25359e..ce44f41 100644 --- a/apps/stremthru/compose.yaml +++ b/apps/stremthru/compose.yaml @@ -7,9 +7,6 @@ services: - 8080 env_file: - .env - depends_on: - stremthru_redis: - condition: service_healthy volumes: - ${DOCKER_DATA_DIR}/stremthru:/app/data labels: @@ -23,21 +20,3 @@ services: - stremthru - stremio - all - - stremthru_redis: - image: redis:latest - container_name: stremthru_redis - restart: unless-stopped - volumes: - - ${DOCKER_DATA_DIR}/stremthru/cache:/data - command: redis-server --appendonly yes --save 60 1 - healthcheck: - test: ["CMD", "redis-cli", "ping"] - interval: 10s - timeout: 5s - retries: 5 - profiles: - - stremthru - - stremio - - all -