docs: Remove "-ti" from docker invocations

The docker install guides end with a call to `docker run`. However, they
all specify `-ti` which is causing our CI to fail.

Remove the `-ti` so that the command works both under the CI and as
expected for the user.

Fixes #175.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt
2018-06-21 14:16:41 +01:00
parent 9e09f54e7c
commit 81c7f9ec01
4 changed files with 4 additions and 4 deletions

View File

@@ -47,7 +47,7 @@
You are now ready to run Kata Containers: You are now ready to run Kata Containers:
```bash ```bash
$ sudo docker run -ti busybox uname -a $ sudo docker run busybox uname -a
``` ```
The previous command shows details of the kernel version running inside the The previous command shows details of the kernel version running inside the

View File

@@ -48,7 +48,7 @@
You are now ready to run Kata Containers: You are now ready to run Kata Containers:
```bash ```bash
$ sudo docker run -ti busybox uname -a $ sudo docker run busybox uname -a
``` ```
The previous command shows details of the kernel version running inside the The previous command shows details of the kernel version running inside the

View File

@@ -48,7 +48,7 @@
You are now ready to run Kata Containers: You are now ready to run Kata Containers:
```bash ```bash
$ sudo docker run -ti busybox uname -a $ sudo docker run busybox uname -a
``` ```
The previous command shows details of the kernel version running inside the The previous command shows details of the kernel version running inside the

View File

@@ -51,7 +51,7 @@
You are now ready to run Kata Containers: You are now ready to run Kata Containers:
```bash ```bash
$ sudo docker run -ti busybox uname -a $ sudo docker run busybox uname -a
``` ```
The previous command shows details of the kernel version running inside the The previous command shows details of the kernel version running inside the