Skip to content

Commit

Permalink
test: Fix the mongo port used (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry authored Nov 13, 2024
1 parent d18f096 commit 7b0db72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ MYSQL_BIN=mysql --user=root --password=password --port=3307
MONGO_BIN=mongosh --username=root --password=password --port=27018
else
MYSQL_BIN=$(DOCKER_COMPOSE_EXEC) mysql mysql --user=root --password=password --host=host.docker.internal --port=3307
MONGO_BIN=$(DOCKER_COMPOSE_EXEC) mongo mongosh --username=root --password=password --host=host.docker.internal --port=27017
MONGO_BIN=$(DOCKER_COMPOSE_EXEC) mongo mongosh --username=root --password=password --host=host.docker.internal --port=27018
endif

.DEFAULT_GOAL := help
Expand Down

0 comments on commit 7b0db72

Please sign in to comment.