mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
redis related things disabled in docs/examples
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user