From 46deab86008ae70560cb88b0c8e869629caf4e43 Mon Sep 17 00:00:00 2001 From: Ziyad Khalil Date: Tue, 13 Jul 2021 22:10:05 +0200 Subject: [PATCH] auth db name --- auth/src/models/connection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/src/models/connection.ts b/auth/src/models/connection.ts index 09d5ef7..09a86f6 100644 --- a/auth/src/models/connection.ts +++ b/auth/src/models/connection.ts @@ -1,6 +1,6 @@ import mongoose from "mongoose"; -const uri = "mongodb://auth-mongo:27017/auth-test"; +const uri = "mongodb://auth-db-service:27017/auth-test"; const connectDb = () => mongoose.connect(uri);