From b7e13190c2d553b18fdd679ce52207faffd77718 Mon Sep 17 00:00:00 2001 From: borekon Date: Tue, 14 Nov 2023 10:43:56 +0000 Subject: [PATCH] Actualizar 'README.md' --- README.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f8b78da..6fdd9ca 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,23 @@ -# infection-monkey-docker +# Docker compose for Infection Monkey -Docker compose for Infection monkey \ No newline at end of file +Steps to execute **before** running containers: + +1. Create the folder: ``` mkdir -m=700 monkey_island_data``` +2. Inside folder ```monkey_island_data``` create the file ```server_settings.json``` with the following content: +```json +{ + "data_dir": "/monkey_island_data", + "mongodb": { + "start_mongodb": false + }, + "ssl_certificate": { + "ssl_certificate_file": "/monkey_island_data/cert.crt", + "ssl_certificate_key_file": "/monkey_island_data/cert.key" + } +} +``` +If you are not goin to use your own certificate, you can delete the ```ssl_certificate``` section. + +3. You can run ```docker compose up -d``` + +[Source](https://techdocs.akamai.com/infection-monkey/docs/docker) \ No newline at end of file