diff options
author | Fred <f.fredhenry@gmail.com> | 2024-10-19 12:52:32 -0500 |
---|---|---|
committer | Fred <f.fredhenry@gmail.com> | 2024-10-19 12:52:32 -0500 |
commit | be4c88ddeca0f21e1e7b3ee286a3695ab168cee1 (patch) | |
tree | 77ddacd791a6ceb021c21a122d1a5784bf1701fc /README.md | |
parent | 3e383e46e8da28beee5b107378320e4519a610a3 (diff) |
merged commands into readmemain
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1 +1,15 @@ # volatility2docker + +This is the original Volatility memory forensics tool, now as a Docker container. +While Volatility 3 exists, it doesn't quite have the same mature feature set as +the original. This can be ran without having to worry about compability issues +between Python 3 and Python 2. + +##### to build the container from the same directory as the Dockerfile +``` +docker build -t volatility2mint . +``` +##### to run the container from a host directory with memory images present +``` +docker run -it --mount type=bind,source=.,target=/userspace volatility2mint +``` |