From 02b753eb128fcc81b42fa8a09267389a0fd84d38 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Wed, 4 Jun 2025 06:02:07 +0100 Subject: [PATCH] fix: show specific port 7655 in Pulse container setup output (#4951) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Replace generic (:your_port) with actual port 7655 in ct/pulse.sh - Provides users with correct access URL immediately after setup - Fixes incomplete access information shown at container creation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude --- ct/pulse.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/pulse.sh b/ct/pulse.sh index d45190b36..c0379b3b7 100644 --- a/ct/pulse.sh +++ b/ct/pulse.sh @@ -67,4 +67,4 @@ description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}(:your_port)${CL}" +echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7655${CL}"