Skip to content

Commit

Permalink
update docker-compose-test-services.yml to include redis-auth
Browse files Browse the repository at this point in the history
  • Loading branch information
gruceo committed Aug 15, 2024
1 parent 58dc72f commit c234ce9
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion scripts/dependency_services/docker-compose-test-services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,20 @@ services:
ports:
- 127.0.0.1::9411
command: --logging.level.zipkin2=DEBUG

redis-auth:
image: redis/redis-stack-server
ports:
- 127.0.0.1::6381
environment:
- REDIS_ARGS=--requirepass passdefault
volumes:
- redis-auth-data:/data
healthcheck:
test: ["CMD", "redis-cli", "--pass", "passdefault", "ping"]
interval: 5s
timeout: 10s
retries: 10
volumes:
postgres-data:
redis-data:
redis-auth-data:

0 comments on commit c234ce9

Please sign in to comment.