From 9ddde97962d04b7d0115a8230f95df5ecf554fa9 Mon Sep 17 00:00:00 2001 From: "aravind.est" Date: Mon, 19 Dec 2022 17:35:34 +0000 Subject: [PATCH] Fix to expose the port outside the container Issue-ID: NONRTRIC-819 Signed-off-by: aravind.est Change-Id: I99891a02c4f46fd2309b373a3b6c3697b11f7969 (cherry picked from commit 2f5fab19dbe5cb01ea81a2120ed821647478ba87) --- catalogue-enhanced/src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalogue-enhanced/src/main.py b/catalogue-enhanced/src/main.py index 31bde13..978a050 100644 --- a/catalogue-enhanced/src/main.py +++ b/catalogue-enhanced/src/main.py @@ -46,4 +46,4 @@ if len(sys.argv) >= 2 and isinstance(sys.argv[1], int): app.add_api('rapp-catalogue-enhanced.yaml') if __name__ == '__main__': - app.run(port=port_number, host="127.0.0.1", threaded=False) + app.run(port=port_number, host="0.0.0.0", threaded=False) -- 2.16.6