Skip to content

Instantly share code, notes, and snippets.

@MaKyOtOx
Created May 27, 2020 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaKyOtOx/f2e727a4d9d2f7d9a3b6f1f4c7bd15ae to your computer and use it in GitHub Desktop.
Save MaKyOtOx/f2e727a4d9d2f7d9a3b6f1f4c7bd15ae to your computer and use it in GitHub Desktop.
TheHive3 installation - https://patrowl.io
version: "2"
services:
elasticsearch:
image: elasticsearch:6.8.8
environment:
- http.host=0.0.0.0
- discovery.type=single-node
ulimits:
nofile:
soft: 65536
hard: 65536
ports:
- "0.0.0.0:9200:9200"
volumes:
- /data/elasticsearch:/usr/share/elasticsearch/data
cortex:
image: thehiveproject/cortex:latest
depends_on:
- elasticsearch
ports:
- "0.0.0.0:9001:9001"
thehive:
image: thehiveproject/thehive:latest
depends_on:
- elasticsearch
- cortex
ports:
- "0.0.0.0:9000:9000"
volumes:
- /data/thehiveconf/application.conf:/etc/thehive/application.conf
command: --no-config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment