From 6f8f46746e054958926595b9f610d14d418d021e Mon Sep 17 00:00:00 2001 From: Graham Helton Date: Mon, 12 Feb 2024 14:02:14 -0500 Subject: [PATCH 1/2] =?UTF-8?q?Sudo=20+=20Fixed=20incorrect=20dash=20being?= =?UTF-8?q?=20used:=20=E2=80=93=20instead=20of=20--?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9a8c29a9..4c0dbb2b 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,9 @@ You can use prebuilt images generated by our CI workflow. ``` curl -o docker-compose.yml https://raw.githubusercontent.com/OWASP/crAPI/main/deploy/docker/docker-compose.yml - docker-compose pull + sudo docker-compose pull - docker-compose -f docker-compose.yml --compatibility up -d + sudo docker-compose -f docker-compose.yml --compatibility up -d ``` - Windows Machine @@ -69,7 +69,7 @@ You can use prebuilt images generated by our CI workflow. - To Stop and Cleanup crAPI ``` - docker-compose -f docker-compose.yml --compatibility down –volumes + docker-compose -f docker-compose.yml --compatibility down --volumes ``` Visit [http://localhost:8888](http://localhost:8888) @@ -117,4 +117,4 @@ To know more about challenges in crAPI. Visit [challenges] [virtualbox]: https://www.virtualbox.org/wiki/Downloads ## Troubleshooting guide for general issues while installing and running crAPI -If you need any help with installing and running crAPI you can check out this guide: [Troubleshooting guide crAPI](https://github.com/OWASP/crAPI/blob/main/docs/troubleshooting.md). If this doesn't solve your problem, please create an issue in Github Issues. \ No newline at end of file +If you need any help with installing and running crAPI you can check out this guide: [Troubleshooting guide crAPI](https://github.com/OWASP/crAPI/blob/main/docs/troubleshooting.md). If this doesn't solve your problem, please create an issue in Github Issues. From 982c56345d5c68a8bd3baf320a5a75d383309ce3 Mon Sep 17 00:00:00 2001 From: Graham Helton Date: Mon, 12 Feb 2024 14:11:57 -0500 Subject: [PATCH 2/2] =?UTF-8?q?Sudo=20+=20Fixed=20incorrect=20dash=20being?= =?UTF-8?q?=20used:=20=E2=80=93=20instead=20of=20--?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4c0dbb2b..271f3031 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ You can use prebuilt images generated by our CI workflow. - To Stop and Cleanup crAPI ``` - docker-compose -f docker-compose.yml --compatibility down --volumes + sudo docker-compose -f docker-compose.yml --compatibility down --volumes ``` Visit [http://localhost:8888](http://localhost:8888)