Fix for random volume Redis Cache
fixes: https://github.com/netbox-community/netbox-docker/issues/851
This commit is contained in:
parent
3f1e45f636
commit
cd5015642e
|
@ -55,6 +55,8 @@ services:
|
|||
- -c # this is to evaluate the $REDIS_PASSWORD from the env
|
||||
- redis-server --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
|
||||
env_file: env/redis-cache.env
|
||||
volumes:
|
||||
- netbox-redis-cache-data:/data
|
||||
|
||||
volumes:
|
||||
netbox-media-files:
|
||||
|
@ -63,3 +65,5 @@ volumes:
|
|||
driver: local
|
||||
netbox-redis-data:
|
||||
driver: local
|
||||
netbox-redis-cache-data:
|
||||
driver: local
|
||||
|
|
Loading…
Reference in New Issue