From 62dc4a4d5c93640551a9dbbe850aeee934cb466a Mon Sep 17 00:00:00 2001 From: vakarisz Date: Tue, 25 Jan 2022 15:03:06 +0200 Subject: [PATCH] Docs: add version to docker examples Based on docs it wasn't clear what user should substitute for "VERSION". By providing specific version like "v1.13.0" we clarify the format of the version string. --- docs/content/setup/docker.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/setup/docker.md b/docs/content/setup/docker.md index 4cc40fc55..1ea6b5b8f 100644 --- a/docs/content/setup/docker.md +++ b/docs/content/setup/docker.md @@ -64,7 +64,7 @@ been signed by a private certificate authority. --interactive \ --name monkey-island \ --network=host \ - guardicore/monkey-island:VERSION + guardicore/monkey-island:v1.13.0 ``` ### 3b. Start Monkey Island with user-provided certificate @@ -91,7 +91,7 @@ any volumes associated with the previous version. --network=host \ --user "$(id -u ${USER}):$(id -g ${USER})" \ --volume "$(realpath ./monkey_island_data)":/monkey_island_data \ - guardicore/monkey-island:VERSION --setup-only + guardicore/monkey-island:v1.13.0 --setup-only ``` 1. Move your `.crt` and `.key` files to `./monkey_island_data`. @@ -134,7 +134,7 @@ any volumes associated with the previous version. --network=host \ --user "$(id -u ${USER}):$(id -g ${USER})" \ --volume "$(realpath ./monkey_island_data)":/monkey_island_data \ - guardicore/monkey-island:VERSION + guardicore/monkey-island:v1.13.0 ``` ### 4. Accessing Monkey Island