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.
This commit is contained in:
vakarisz 2022-01-25 15:03:06 +02:00
parent 014108e360
commit 62dc4a4d5c
1 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ been signed by a private certificate authority.
--interactive \ --interactive \
--name monkey-island \ --name monkey-island \
--network=host \ --network=host \
guardicore/monkey-island:VERSION guardicore/monkey-island:v1.13.0
``` ```
### 3b. Start Monkey Island with user-provided certificate ### 3b. Start Monkey Island with user-provided certificate
@ -91,7 +91,7 @@ any volumes associated with the previous version.
--network=host \ --network=host \
--user "$(id -u ${USER}):$(id -g ${USER})" \ --user "$(id -u ${USER}):$(id -g ${USER})" \
--volume "$(realpath ./monkey_island_data)":/monkey_island_data \ --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`. 1. Move your `.crt` and `.key` files to `./monkey_island_data`.
@ -134,7 +134,7 @@ any volumes associated with the previous version.
--network=host \ --network=host \
--user "$(id -u ${USER}):$(id -g ${USER})" \ --user "$(id -u ${USER}):$(id -g ${USER})" \
--volume "$(realpath ./monkey_island_data)":/monkey_island_data \ --volume "$(realpath ./monkey_island_data)":/monkey_island_data \
guardicore/monkey-island:VERSION guardicore/monkey-island:v1.13.0
``` ```
### 4. Accessing Monkey Island ### 4. Accessing Monkey Island