-
Notifications
You must be signed in to change notification settings - Fork 640
Docker guide TheHive
To-om edited this page Feb 1, 2017
·
3 revisions
Easiest way to start TheHive:
docker run certbdf/thehive
TheHive listens on 9000/tcp. In order to make the port accessible add --publish
parameter:
docker run --publish 8080:9000 certbdf/thehive
Then you can hit http://localhost:8080 or http://host-ip:8080 in your browser.
TheHive stores its data in /data
(inside the container). You can add --volume
parameter :
docker run --volume /path/to/persistent/data:/data certbdf/thehive
If you wish to adapt the default configuration, add a volume parameter to overwrite the configuration file:
docker run --volume /path/to/your/application.conf:/opt/docker/conf/application.conf certbdf/thehive