From 0dfb681ba5d5dba535895ace9d650667904b5df7 Mon Sep 17 00:00:00 2001 From: Brendan Burns Date: Tue, 9 Jun 2015 22:08:52 -0700 Subject: [PATCH] Revert change from run-container to run. --- docs/getting-started-guides/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started-guides/docker.md b/docs/getting-started-guides/docker.md index 6e5b7494dbc..cf9e83ea045 100644 --- a/docs/getting-started-guides/docker.md +++ b/docs/getting-started-guides/docker.md @@ -51,7 +51,7 @@ If you are running different kubernetes clusters, you may need to specify ```-s ### Run an application ```sh -kubectl -s http://localhost:8080 run nginx --image=nginx --port=80 +kubectl -s http://localhost:8080 run-container nginx --image=nginx --port=80 ``` now run ```docker ps``` you should see nginx running. You may need to wait a few minutes for the image to get pulled.