From af81b826a630a1e6ceac4e0c2533cb256e30c3df Mon Sep 17 00:00:00 2001 From: Elizabeth Date: Thu, 7 Mar 2019 10:55:00 -0500 Subject: [PATCH] update example docker command port bind options must use 127.0.0.1 and not `localhost` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 800bc8ec166c..56095586b9fc 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Try it out: ```bash -docker run -p localhost:8443:8443 -v "${PWD}:/root/project" codercom/code-server code-server --allow-http --no-auth +docker run -p 127.0.0.1:8443:8443 -v "${PWD}:/root/project" codercom/code-server code-server --allow-http --no-auth ``` - Code on your Chromebook, tablet, and laptop with a consistent dev environment.