The Redis cache container was using the wrong env

Our docker-compose.yml pointed the env file for the Redis cache to the
wrong file. Now the Redis cache password between the netbox.env and
redis-cache.env match.
This commit is contained in:
Tobias Genannt 2020-02-14 12:33:28 +01:00
parent 355ebadd10
commit b9c44b85cc

View File

@ -57,7 +57,7 @@ services:
- sh
- -c # this is to evaluate the $REDIS_PASSWORD from the env
- redis-server --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
env_file: env/redis.env
env_file: env/redis-cache.env
volumes:
netbox-static-files:
driver: local