mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-05 14:58:43 +00:00
Fixes redis conf location in image
This commit is contained in:
parent
54b924a4e2
commit
be1a26d32b
2 changed files with 7 additions and 1 deletions
|
@ -48,7 +48,7 @@ services:
|
|||
image: redis
|
||||
command: redis-server --requirepass ${REDIS_PASSWORD}
|
||||
volumes:
|
||||
- ./redis.conf:/usr/local/etc/redis/redis.conf
|
||||
- ./redis.conf:/etc/redis/redis.conf
|
||||
env_file: .env
|
||||
ports:
|
||||
- 6379:6379
|
||||
|
|
|
@ -2,3 +2,9 @@ bind 127.0.0.1 ::1
|
|||
requirepass pAsSwOrD
|
||||
protected-mode yes
|
||||
port 6379
|
||||
|
||||
rename-command FLUSHDB ""
|
||||
rename-command FLUSHALL ""
|
||||
rename-command DEBUG ""
|
||||
rename-command CONFIG ""
|
||||
rename-command SHUTDOWN ""
|
||||
|
|
Loading…
Reference in a new issue