feat: connect to redis-cli from within docker container instead of users localhost

This commit is contained in:
Ahmed Hashim 2022-10-09 08:08:32 -04:00
parent 9f6fe5f0b7
commit 55d51c70b8
No known key found for this signature in database
GPG Key ID: 2E746699667C1969

View File

@ -11,12 +11,12 @@ db-test:
# Connect to the primary cache
.PHONY: cache
cache:
redis-cli
docker compose exec -it cache redis-cli
# Connect to the test cache
.PHONY: cache-test
cache-test:
redis-cli -n 1
docker compose exec -it cache redis-cli -n 1
# Install Ent code-generation module
.PHONY: ent-install