From 22ad115893e5a418af71ffdee612694a876ea167 Mon Sep 17 00:00:00 2001 From: Matt Gunter Date: Sat, 18 Jan 2025 22:16:26 -0500 Subject: [PATCH] forced app to listen to IPV4 in container. --- backend/src/app.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/app.ts b/backend/src/app.ts index 4f27e12..8cabcf2 100644 --- a/backend/src/app.ts +++ b/backend/src/app.ts @@ -122,7 +122,8 @@ class App { (_, res) => res.sendFile(path.join(frontendPath, 'index.html')) ); - this.eListener = this.e.listen(this.port); + this.eListener = this.e.listen(this.port, '0.0.0.0'); + } private initializeSettings() {