Fixed test failures because of missing cache

When running tests with ´test.sh´ some errors where logged because now
redis-cache instance was running.
This commit is contained in:
Tobias Genannt 2020-02-14 12:35:47 +01:00
parent b9c44b85cc
commit 20c7461c7b
1 changed files with 9 additions and 1 deletions

View File

@ -5,6 +5,7 @@ services:
depends_on:
- postgres
- redis
- redis-cache
env_file: env/netbox.env
user: '101'
volumes:
@ -34,8 +35,15 @@ services:
command:
- sh
- -c # this is to evaluate the $REDIS_PASSWORD from the env
- redis-server --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
- redis-server --appendonly yes --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
env_file: env/redis.env
redis-cache:
image: redis:5-alpine
command:
- 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-cache.env
volumes:
netbox-static-files:
driver: local