Add the init flag to the docker run command.

This commit is contained in:
Tom Alexander 2023-08-25 02:10:03 -04:00
parent 2505a10275
commit 79c834a1e6
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -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.