From e1a23a5662ea0b8424f9bbd10effd0e773efefa4 Mon Sep 17 00:00:00 2001 From: zurdi Date: Tue, 15 Aug 2023 23:51:44 +0200 Subject: [PATCH] redis related things disabled in docs/examples --- CHANGELOG.md | 2 +- examples/docker-compose.example.yml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2faad63a8..8ea0c27d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ -**_Note_**: Experimental support for redis in the backend was added for anyone that wants to test it (it's experimental so expect some bugs). It's not required yet (check docker-compose.example.yml to check how to set the needed environment variables) but it will likely be introduced in 2.0. +
diff --git a/examples/docker-compose.example.yml b/examples/docker-compose.example.yml index b0d3c7c3e..0b26ebf40 100644 --- a/examples/docker-compose.example.yml +++ b/examples/docker-compose.example.yml @@ -12,8 +12,8 @@ services: - DB_USER=romm-user # [Optional] Only needed if ROMM_DB_DRIVER=mariadb - DB_NAME=romm # [Optional] Only needed if ROMM_DB_DRIVER=mariadb. Can be optionally changed, and should match the MYSQL_DATABASE value in the mariadb container. - DB_PASSWD= # [Optional] Only needed if ROMM_DB_DRIVER=mariadb - - REDIS_HOST=redis # [Optional][Experimental] Redis enables workers to run long tasks, like full library rescans, without having to wait on the main thread. Can be used with an already existent redis container - - REDIS_PORT=6379 # [Optional][Experimental] + # - REDIS_HOST=redis # [Optional][Experimental] Redis enables workers to run long tasks, like full library rescans, without having to wait on the main thread. Can be used with an already existent redis container + # - REDIS_PORT=6379 # [Optional][Experimental] - CLIENT_ID= - CLIENT_SECRET= - STEAMGRIDDB_API_KEY= # [Optional] @@ -45,9 +45,9 @@ services: restart: "unless-stopped" # [Optional][Experimental] - redis: - image: redis:alpine - container_name: redis - restart: unless-stopped - ports: - - 6379:6379 + # redis: + # image: redis:alpine + # container_name: redis + # restart: unless-stopped + # ports: + # - 6379:6379