From 41d1be9205162e08556d04cde2dad11db1017e4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kh=E1=BA=A3i?= Date: Sun, 10 Mar 2019 20:28:25 +0700 Subject: [PATCH] Add -t flag to docker example (#181) It is quite annoying when Ctrl-C does not stop the container --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 53e91bbd..6a4ac351 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Try it out: ```bash -docker run -p 127.0.0.1:8443:8443 -v "${PWD}:/root/project" codercom/code-server code-server --allow-http --no-auth +docker run -t -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.