feat: connect to redis-cli from within docker container instead of users localhost
This commit is contained in:
parent
ac0adde9e6
commit
b4621afbd9
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue