From b45112da3007bc7355a86f91be734f617a1c64df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Str=C3=B6mberg?= Date: Mon, 20 Apr 2020 09:20:01 -0700 Subject: [PATCH] Fix port number typo --- site/content/en/docs/start/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/en/docs/start/_index.md b/site/content/en/docs/start/_index.md index 4cbe3466a7..a6a991d86c 100644 --- a/site/content/en/docs/start/_index.md +++ b/site/content/en/docs/start/_index.md @@ -130,7 +130,7 @@ minikube service hello-minikube Alternatively, use kubectl to forward the port: ```shell -kubectl port-forward service/hello-minikube 8780:8080 +kubectl port-forward service/hello-minikube 7080:8080 ``` Tada! Your application is now available at [http://localhost:7080/](http://localhost:7080/)