From 56de5c76a98016e9eb0b8c4df392cf71f61518cd Mon Sep 17 00:00:00 2001 From: Robert O'Brien Date: Thu, 17 Jun 2021 12:09:26 +0100 Subject: [PATCH] Added selinux label to the docker run install command --- docs/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index d43dc7bf..7e2d84c8 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -31,10 +31,10 @@ $ python3 run_kraken.py --config ``` ### Run containerized version -Assuming that the latest docker ( 17.05 or greater with multi-build support ) is intalled on the host, run: +Assuming that the latest docker ( 17.05 or greater with multi-build support ) is installed on the host, run: ``` $ docker pull quay.io/openshift-scale/kraken:latest -$ docker run --name=kraken --net=host -v :/root/.kube/config -v :/root/kraken/config/config.yaml -d quay.io/openshift-scale/kraken:latest +$ docker run --name=kraken --net=host -v :/root/.kube/config:Z -v :/root/kraken/config/config.yaml:Z -d quay.io/openshift-scale/kraken:latest $ docker logs -f kraken ```