From 55d51c70b8ac39c19b2505a5265bbcaac1073db5 Mon Sep 17 00:00:00 2001 From: Ahmed Hashim Date: Sun, 9 Oct 2022 08:08:32 -0400 Subject: [PATCH] feat: connect to `redis-cli` from within docker container instead of users localhost --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c78cdd9..60ca4fc 100644 --- a/Makefile +++ b/Makefile @@ -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