https://github.com/bannsec/autopsy_docker
Docker build for autopsy
https://github.com/bannsec/autopsy_docker
Last synced: about 1 year ago
JSON representation
Docker build for autopsy
- Host: GitHub
- URL: https://github.com/bannsec/autopsy_docker
- Owner: bannsec
- Created: 2019-04-14T22:59:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-04-13T02:06:39.000Z (over 5 years ago)
- Last Synced: 2025-04-09T09:11:50.912Z (over 1 year ago)
- Language: Dockerfile
- Size: 13.7 KB
- Stars: 21
- Watchers: 2
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Autopsy
Dockerfile for building a __working__ version of Autopsy for Linux.
Unfotunately, their guidance for installing sucks and misses a lot of problems.
This dockerfile successfully builds and runs as of writing.
## Run
Note: The `xhost +` command is in the documentation for convienience. It is a security risk (https://laurentschneider.com/wordpress/2007/03/xhost-is-a-huge-security-hole.html). If you have concerns about your X security, please using xauth instead.
## Using Docker
[source](https://github.com/bannsec/autopsy_docker/issues/1)
```
$ xhost +
$ docker run \
-d \
-it \
--shm-size 2G \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-v $(pwd)/case/:/root/case \
-e DISPLAY=$DISPLAY \
-e JAVA_TOOL_OPTIONS='-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel' \
--network host \
--device /dev/dri \
bannsec/autopsy
```
## Using Docker Compose
Just run:
```
$ xhost + && docker-compose up -d
```
## Loading an image file for a case
The volume mounted in the local folder `./case/` should be used to share disk
images and cases files, so put here your evidence and load it in the Autopsy
wizard.