Skip to content

Instantly share code, notes, and snippets.

@pasdam
Created January 1, 2023 17:49
Show Gist options
  • Save pasdam/755f486741fe18090c5717a98b98a71e to your computer and use it in GitHub Desktop.
Save pasdam/755f486741fe18090c5717a98b98a71e to your computer and use it in GitHub Desktop.
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