From a399e8a0ea3decbb7e907d5ce416e7330c467dc9 Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Mon, 25 Oct 2021 17:30:25 +0300 Subject: [PATCH] Docs: reverted the numbering to use 1. instead of manual numeration in docker.md --- docs/content/setup/docker.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/content/setup/docker.md b/docs/content/setup/docker.md index 92f076655..774813530 100644 --- a/docs/content/setup/docker.md +++ b/docs/content/setup/docker.md @@ -72,7 +72,7 @@ been signed by a private certificate authority. chmod 700 ./monkey_island_data ``` -2. Run Monkey Island with the `--setup-only` flag to populate the `./monkey_island_data` directory with a default `server_config.json` file. +1. Run Monkey Island with the `--setup-only` flag to populate the `./monkey_island_data` directory with a default `server_config.json` file. ```bash sudo docker run \ @@ -84,16 +84,16 @@ been signed by a private certificate authority. guardicore/monkey-island:VERSION --setup-only ``` -3. Move your `.crt` and `.key` files to `./monkey_island_data`. +1. Move your `.crt` and `.key` files to `./monkey_island_data`. -4. Make sure that your `.crt` and `.key` files are readable and writeable only by you. +1. Make sure that your `.crt` and `.key` files are readable and writeable only by you. ```bash chmod 600 ./monkey_island_data/ chmod 600 ./monkey_island_data/ ``` -5. Edit `./monkey_island_data/server_config.json` to configure Monkey Island +1. Edit `./monkey_island_data/server_config.json` to configure Monkey Island to use your certificate. Your config should look something like this: ```json {linenos=inline,hl_lines=["11-14"]} @@ -114,7 +114,7 @@ been signed by a private certificate authority. } ``` -6. Start the Monkey Island server: +1. Start the Monkey Island server: ```bash sudo docker run \