-
Notifications
You must be signed in to change notification settings - Fork 634
Docker guide
To-om edited this page Nov 7, 2016
·
15 revisions
This guide assume that you will use docker.
mkdir -p /opt/thehive/etc /opt/thehive/data
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 --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
- Open your browser and connect to http://ADDRESS_OF_YOUR_SERVER:9000.
- Follow 4.3. First start in the Installation guide to start using TheHive.