Created
January 1, 2023 17:49
-
-
Save pasdam/755f486741fe18090c5717a98b98a71e to your computer and use it in GitHub Desktop.
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 | |
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" | |
command: --cortex-port 9001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment