Add a print to announce the server is running.

This commit is contained in:
Tom Alexander
2023-08-18 22:32:01 -04:00
parent 0d6621d389
commit 372542d914
3 changed files with 2 additions and 19 deletions

View File

@@ -15,7 +15,7 @@ make --directory=docker
Next we need to launch the server:
```bash
docker run --rm --publish 127.0.0.1:3000:3000/tcp org-investigation
docker run --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.