From b9c44b85ccaac94a8522034634357385c8b9751d Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Fri, 14 Feb 2020 12:33:28 +0100 Subject: [PATCH] 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. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 3806480..9272b91 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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