From 2733aeb092842a5d30f21375549307f513ea6cae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Rodr=C3=ADguez?= Date: Fri, 4 Jul 2025 15:16:01 +0200 Subject: [PATCH] fix(install.sh): use IPV4_PUBLIC_IP variable in output instead of repeated curl --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index ae237a54a..67d995566 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -844,7 +844,7 @@ IPV6_PUBLIC_IP=$(curl -6s https://ifconfig.io || true) echo -e "\nYour instance is ready to use!\n" if [ -n "$IPV4_PUBLIC_IP" ]; then - echo -e "You can access Coolify through your Public IPV4: http://$(curl -4s https://ifconfig.io):8000" + echo -e "You can access Coolify through your Public IPV4: http://[$IPV4_PUBLIC_IP]:8000" fi if [ -n "$IPV6_PUBLIC_IP" ]; then echo -e "You can access Coolify through your Public IPv6: http://[$IPV6_PUBLIC_IP]:8000"