From 4096acee3c7fc5bacc28f798db15655ea36ba57a Mon Sep 17 00:00:00 2001 From: tomj Date: Mon, 3 Sep 2018 01:39:41 +1000 Subject: [PATCH] README Docker disambiguations Disambiguate between nsjail _container_ and _command_ in README for easier reading. - Being a n00b to this project I feel this makes the onboarding of use with Docker somewhat easier by removing duplicated/overloaded terms. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 90f2dbb..f018484 100644 --- a/README.md +++ b/README.md @@ -521,14 +521,14 @@ Options: To launch nsjail in a docker container clone the repository and build the docker image:
-docker build -t nsjail .
+docker build -t nsjailcontainer .
 
This will build up an image containing njsail and kafel. -From now you can either use it in another Dockerfile (`FROM nsjail`) or directly: +From now you can either use it in another Dockerfile (`FROM nsjailcontainer`) or directly:
-docker run --privileged --rm -it nsjail nsjail --user 99999 --group 99999 --disable_proc --chroot / --time_limit 30 /bin/bash
+docker run --privileged --rm -it nsjailcontainer nsjail --user 99999 --group 99999 --disable_proc --chroot / --time_limit 30 /bin/bash
 
*** -- 2.7.4