From 18c37feed82f90fa9a2708e3a6f63907bf65510e Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Tue, 13 May 2025 20:04:11 -0700 Subject: [PATCH] feat: container startup message now shows public and docker ip assignment --- tvapp2/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tvapp2/index.js b/tvapp2/index.js index ce824600..6ea71432 100755 --- a/tvapp2/index.js +++ b/tvapp2/index.js @@ -2323,7 +2323,8 @@ const server = http.createServer( ( request, response ) => { Log.ok( `core`, chalk.yellow( `[initiate]` ), chalk.white( `✅` ), chalk.blueBright( `` ), chalk.gray( `Server is now running on` ), - chalk.blueBright( `
` ), chalk.whiteBright.bgBlack( ` ${ envWebIP }:${ envWebPort } ` ) ); + chalk.blueBright( `` ), chalk.whiteBright.bgBlack( ` ${ envWebIP }:${ envWebPort } ` ), + chalk.blueBright( `` ), chalk.whiteBright.bgBlack( ` ${ envIpContainer }:${ envWebPort } ` ) ); }); })();