From e49b5ee2c057e59dba45ee115a5add063f7c5bdc Mon Sep 17 00:00:00 2001 From: nschoe Date: Tue, 27 Dec 2016 08:12:33 +0100 Subject: [PATCH] Fix typo in example command --- articles/2016-07-03-Docker-Taming-the-Beast-Part-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/2016-07-03-Docker-Taming-the-Beast-Part-2.md b/articles/2016-07-03-Docker-Taming-the-Beast-Part-2.md index 8a3b1d0..7f4062d 100644 --- a/articles/2016-07-03-Docker-Taming-the-Beast-Part-2.md +++ b/articles/2016-07-03-Docker-Taming-the-Beast-Part-2.md @@ -764,7 +764,7 @@ By the way, if you want to "unstuck" your stuck container, try `CTRL + A; P` (th So last but not least---I promise this will work after that---we have to allocate a (pseudo-)TTY. And this is with the `-t` option. In fact this is _so common_ that you will always group `-i` and `-t` together with `-it` or `-ti`. -And **now** we can do some serious stuff: `docker run -it run ubuntu bash`. +And **now** we can do some serious stuff: `docker run -it ubuntu bash`. Ho yeah! It works now: we have a shell inside our container!