From 79c834a1e65885755af0e387443a09dda1a36627 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Fri, 25 Aug 2023 02:10:03 -0400 Subject: [PATCH] Add the init flag to the docker run command. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 127a57f..f3ae4a7 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ make --directory=docker Next we need to launch the server: ```bash -docker run --rm --publish 3000:3000/tcp org-investigation +docker run --init --rm --publish 3000:3000/tcp org-investigation ``` This launches a server listening on port 3000, so pop open your browser to http://127.0.0.1:3000/ to access the web interface.