-
Notifications
You must be signed in to change notification settings - Fork 630
Docker guide
To-om edited this page Nov 9, 2016
·
15 revisions
This guide assume that you will use docker.
The database used by TheHive is ElasticSearch. You can also use it with docker as described in the installation guide.
Note that you have to specify a path for persistent data. Let's assume that it's /opt/thehive/data
for this guide.
docker run --rm \
--publish 127.0.0.1:9000:9000
--volume /opt/thehive/data:/data \
certbdf/thehive:latest
If you wish to adapt the default configuration, add a volume
parameter to overwrite the configuration file:
--volume /path/to/your/application.conf:/opt/docker/conf/application.conf
Follow 4.3. First start in the Installation guide to start using TheHive.