From 5a0b685c4c4384188f5e7aa7a69d91dfd38637fa Mon Sep 17 00:00:00 2001 From: Oskar Hahn Date: Sun, 4 Sep 2022 12:49:20 +0200 Subject: [PATCH] fix readme (#25) --- README.md | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 31f7db6..8f70da9 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,23 @@ Tool to test the limits of OpenSlides. ## Install +### From github + +Binaries of the tool get be fetched from the last release: + +https://github.com/OpenSlides/openslides-performance/releases + + +### With Docker + +The tool can also be run with docker: + +docker run --network=host ghcr.io/openslides/openslides-performance:latest + +The argument `--network=host` is needed for the most commands to test a local +instance. For remove instances, it should not be needed. + + ### With installed go ``` @@ -26,12 +43,3 @@ You can see the usage of the command by calling it. ``` openslides-performance ``` - -## Docker - -You can run the command with docker: - -``` -docker build . -t openslides-performance -docker run --network host openslides-performance -```