-
Notifications
You must be signed in to change notification settings - Fork 77
Docker Version #81
Copy link
Copy link
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
I had trouble getting this to run on my system with the dependencies, so I Dockerized it, and now it's working.
It's on Docker Hub: https://hub.docker.com/r/pensivesecurity/badsecrets
It can be run with
docker run pensivesecurity/badsecrets -h
If you have a custom secrets file, place the file "decryptionkeys.txt" in your current directory, then run
docker run -v $PWD:/tmp/ pensivesecurity/badsecrets -c /tmp/decryptionkeys.txt [rest_of_command]
The docker file is
FROM python:3
RUN python -m pip install badsecrets
ENTRYPOINT ["badsecrets"]
Please feel free to push an official container and add it to the installation instructions if you want. I figured I'd share this information in case it was helpful to anyone else.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request