revert to localhost from play.sailor.sh

This commit is contained in:
Nishan
2025-08-27 10:42:06 +05:30
parent 9c3777931a
commit 502ee9f4de
2 changed files with 5 additions and 2 deletions

View File

@@ -206,7 +206,7 @@ try {
# Function to open browser
function Open-Browser {
$url = "https://play.sailor.sh/"
$url = "http://localhost:30080/"
Write-ColorOutput "Opening Browser" "Blue"
Write-ColorOutput "==============================================================" "Cyan"
@@ -342,6 +342,8 @@ try {
Write-ColorOutput "docker compose down --rmi all" "Green"
Write-ColorOutput "To access CK-X Simulator: " -NoNewline
Write-ColorOutput "https://play.sailor.sh/" "Green"
Write-ColorOutput "To access CK-X Simulator locally use: " -NoNewline
Write-ColorOutput "http://localhost:30080/" "Green"
Write-Host ""
Write-ColorOutput "Thank you for installing CK-X Simulator!" "Cyan"
}

View File

@@ -142,7 +142,7 @@ wait_for_service() {
# Function to open browser
open_browser() {
local url="https://play.sailor.sh/"
local url="http://localhost:30080/"
echo -e "${BLUE}Opening Browser${NC}"
echo -e "${CYAN}==============================================================${NC}"
@@ -226,6 +226,7 @@ main() {
echo -e "${YELLOW}To clean up all containers and images:${NC} ${GREEN}docker system prune -a${NC}"
echo -e "${YELLOW}To remove only CK-X images:${NC} ${GREEN}docker compose down --rmi all${NC}"
echo -e "${YELLOW}To access CK-X Simulator:${NC} ${GREEN}https://play.sailor.sh/${NC}"
echo -e "${YELLOW}To access CK-X Simulator locally use:${NC} ${GREEN}http://localhost:30080/${NC}"
echo
echo -e "${CYAN}Thank you for installing CK-X Simulator!${NC}"
}