redis related things disabled in docs/examples

This commit is contained in:
zurdi
2023-08-15 23:51:44 +02:00
parent fe74e9e354
commit e1a23a5662
2 changed files with 9 additions and 9 deletions

View File

@@ -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=<database password> # [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=<IGDB client id>
- CLIENT_SECRET=<IGDB client secret>
- STEAMGRIDDB_API_KEY=<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