Last active
September 21, 2022 12:41
-
-
Save nadouani/b1a63c686200960a2323ed0e15747c8d to your computer and use it in GitHub Desktop.
Run TheHive 4.0 using docker, a local file storage and a berkleydb for persistence
This file contains 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
play.http.secret.key="ThehiveTestPassword" | |
## For test only ! | |
db.janusgraph { | |
storage.backend: berkeleyje | |
storage.directory: /tmp/ | |
berkeleyje.freeDisk: 200 | |
} | |
storage { | |
provider: localfs | |
localfs.directory: /opt/data | |
} |
This file contains 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
docker run -it -d \ | |
-p 9000:9000 \ | |
-v `pwd`/application.conf:/etc/thehive/application.conf \ | |
-v `pwd`/data:/tmp \ | |
thehiveproject/thehive4:latest --no-config |
Yes, thanks for this comment, I thought it was obvious 🤣
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If it fails to start, consider changing the permissions of the
data
folder.