mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-23 07:28:08 +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
|
image: redis
|
||||||
command: redis-server --requirepass ${REDIS_PASSWORD}
|
command: redis-server --requirepass ${REDIS_PASSWORD}
|
||||||
volumes:
|
volumes:
|
||||||
- ./redis.conf:/usr/local/etc/redis/redis.conf
|
- ./redis.conf:/etc/redis/redis.conf
|
||||||
env_file: .env
|
env_file: .env
|
||||||
ports:
|
ports:
|
||||||
- 6379:6379
|
- 6379:6379
|
||||||
|
|
|
@ -2,3 +2,9 @@ bind 127.0.0.1 ::1
|
||||||
requirepass pAsSwOrD
|
requirepass pAsSwOrD
|
||||||
protected-mode yes
|
protected-mode yes
|
||||||
port 6379
|
port 6379
|
||||||
|
|
||||||
|
rename-command FLUSHDB ""
|
||||||
|
rename-command FLUSHALL ""
|
||||||
|
rename-command DEBUG ""
|
||||||
|
rename-command CONFIG ""
|
||||||
|
rename-command SHUTDOWN ""
|
||||||
|
|
Loading…
Reference in a new issue