From 31cd5b93013b74eaa0b542d4609b5b51347caf65 Mon Sep 17 00:00:00 2001 From: Alexandre Pinto Date: Tue, 3 Feb 2015 11:06:09 -0500 Subject: [PATCH] Minor Readme fixes --- README.md | 4 +++- docker/README.md | 8 ++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e29e86e..faf99ff 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,8 @@ pip install -r requirements.txt At this point you should be ready to run Combine. +We also have a [dockerfile](https://github.com/mlsecproject/combine/tree/master/docker) available. + ### Exporting to CRITs @@ -107,7 +109,7 @@ crits_campaign = combine crits_maxThreads = 10 ``` Make sure you have the campaign created on CRITs before exporting the data. The `confidence` field is being -set as `medium` throughout the export by default. +set as `medium` throughout the export by default. Thanks to [@paulpc](https://github.com/paulpc) for implementing this feature and [@mgoffin](https://github.com/mgoffin) for moral support ;). diff --git a/docker/README.md b/docker/README.md index 11a28ac..b3410cd 100644 --- a/docker/README.md +++ b/docker/README.md @@ -3,6 +3,10 @@ A simple Dockerfile for running [Combine](https://github.com/mlsecproject/combine). Also on [Docker Hub](https://registry.hub.docker.com/u/technoskald/combine/). If you prefer to use the Docker file rather than pull from the Docker hub, then run with something like: -- `sudo docker build .` +``` +sudo docker build . +``` Then note the ID at the end and run: -- `sudo docker run --rm -v \`pwd\`/harvest.csv:/combine/harvest.csv IDHERE` +``` +sudo docker run --rm -v \`pwd\`/harvest.csv:/combine/harvest.csv IDHERE` +```