Created
May 27, 2020 11:23
-
-
Save MaKyOtOx/f2e727a4d9d2f7d9a3b6f1f4c7bd15ae to your computer and use it in GitHub Desktop.
TheHive3 installation - https://patrowl.io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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