Skip to content

Commit 81c7f9e

Browse files
author
James O. D. Hunt
committed
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 kata-containers#175. Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
1 parent 9e09f54 commit 81c7f9e

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

install/docker/centos-docker-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
You are now ready to run Kata Containers:
4848
4949
```bash
50-
$ sudo docker run -ti busybox uname -a
50+
$ sudo docker run busybox uname -a
5151
```
5252
5353
The previous command shows details of the kernel version running inside the

install/docker/fedora-docker-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
You are now ready to run Kata Containers:
4949
5050
```bash
51-
$ sudo docker run -ti busybox uname -a
51+
$ sudo docker run busybox uname -a
5252
```
5353
5454
The previous command shows details of the kernel version running inside the

install/docker/rhel-docker-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
You are now ready to run Kata Containers:
4949
5050
```bash
51-
$ sudo docker run -ti busybox uname -a
51+
$ sudo docker run busybox uname -a
5252
```
5353
5454
The previous command shows details of the kernel version running inside the

install/docker/ubuntu-docker-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
You are now ready to run Kata Containers:
5252
5353
```bash
54-
$ sudo docker run -ti busybox uname -a
54+
$ sudo docker run busybox uname -a
5555
```
5656
5757
The previous command shows details of the kernel version running inside the

0 commit comments

Comments
 (0)