Skip to content

Docker guide

Jerome Leonard edited this page Nov 7, 2016 · 15 revisions

Install theHive using docker

This guide assume that you will use docker.

1. Prepare the system

mkdir -p /opt/thehive/etc /opt/thehive/data

3. Install and run ElasticSearch

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.

2. Install and run TheHive

docker --rm \
  --publish 127.0.0.1:9000:9000
  --volume /opt/thehive/data:/data \
  certbdf/thehive:latest

XXX --volume /opt/thehive/conf:/opt/thehive/etc XXX

3. First start

Documentation has been moved here

Clone this wiki locally