Skip to content

Commit

Permalink
Add information about default user
Browse files Browse the repository at this point in the history
  • Loading branch information
vdebergue committed Jun 2, 2021
1 parent c1436ab commit e1df375
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM python:3.9

VOLUME [ "/docs" ]
WORKDIR /docs
CMD [ "mkdocs", "serve", "-a", "0.0.0.0:8000" ]

ADD requirements.txt /tmp
RUN pip install -r /tmp/requirements.txt
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
# docs
# docs

The documentation uses mkdocs to render the content.

```
# Install the requirements first
pip install -r requirements.txt
# Start the mkdocs server in development mode
mkdocs serve
```

Alternatively you can use a docker container:

```
docker build . -t thehive-docs
docker run -it --rm -p 8000:8000 -v $PWD:/docs thehive-docs
```
Original file line number Diff line number Diff line change
Expand Up @@ -583,6 +583,8 @@ service thehive start

Please note that the service may take some time to start. Once it is started, you may launch your browser and connect to `http://YOUR_SERVER_ADDRESS:9000/`.

The default admin user is `[email protected]` with password `secret`. It is recommended to change the default password.


## Advanced configuration
For additional configuration options, please refer to the [Configuration Guides](../index.md#configuration-guides).
Expand Down

0 comments on commit e1df375

Please sign in to comment.