-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dockerize scalpel #44
base: master
Are you sure you want to change the base?
Conversation
* fixed `run.sh` script * fixed docker volumes
docker run --rm -it \ | ||
-v ${PWD}/device.img:/scalpel/device.img \ | ||
-v ${PWD}/recovery:/scalpel/recovery \ | ||
s4ros/scalpel $@ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be changed to sleuthkit
ERRORS+=("No ${PWD}/device.img file available!") | ||
fi | ||
|
||
# if [[ ! -d ${PWD}/recovery ]]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commented out code should be removed before pushing to production
@@ -1,3 +1,26 @@ | |||
# s4ros/scalpel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be changed to sleuthkit
docker run --rm -it \ | ||
-v $(pwd)/device.img:/scalpel/device.img \ | ||
-v $(pwd)/recovery:/scalpel/recovery \ | ||
s4ros/scalpel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be changed to sleuthkit
@@ -1,3 +1,26 @@ | |||
# s4ros/scalpel | |||
|
|||
In courtesy of https://github.com/sleuthkit/scalpel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This segment should be removed, since this will actually be in the official sleuthkit
repository
RUN apt-get update && \ | ||
apt-get install -y -qq --no-install-recommends \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RUN apt-get update && \ | |
apt-get install -y -qq --no-install-recommends \ | |
RUN apt update && \ | |
apt install -y -qq --no-install-recommends \ |
it's time to let go of apt-get
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
apt-get should still be used in scripts
No description provided.