diff --git a/docker-compose.test.yml b/docker-compose.test.yml index 33c0606..04b5939 100644 --- a/docker-compose.test.yml +++ b/docker-compose.test.yml @@ -21,14 +21,14 @@ services: image: postgres:14-alpine env_file: env/postgres.env redis: - image: redis:6-alpine + image: redis:7-alpine command: - sh - -c # this is to evaluate the $REDIS_PASSWORD from the env - redis-server --appendonly yes --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose env_file: env/redis.env redis-cache: - image: redis:6-alpine + image: redis:7-alpine command: - sh - -c # this is to evaluate the $REDIS_PASSWORD from the env diff --git a/docker-compose.yml b/docker-compose.yml index c7373be..d903297 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -42,7 +42,7 @@ services: # redis redis: - image: redis:6-alpine + image: redis:7-alpine command: - sh - -c # this is to evaluate the $REDIS_PASSWORD from the env @@ -51,7 +51,7 @@ services: volumes: - netbox-redis-data:/data redis-cache: - image: redis:6-alpine + image: redis:7-alpine command: - sh - -c # this is to evaluate the $REDIS_PASSWORD from the env