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 ac0adde9e6
commit b4621afbd9

View file

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