Go to file
Markus Pesch 9c90ea1853
All checks were successful
continuous-integration/drone/push Build is passing
Initial Commit
2024-12-29 13:56:32 +01:00
.dockerignore Initial Commit 2024-12-29 13:56:32 +01:00
.drone.yml Initial Commit 2024-12-29 13:56:32 +01:00
.editorconfig Initial Commit 2024-12-29 13:56:32 +01:00
.gitattributes Initial Commit 2024-12-29 13:56:32 +01:00
.gitignore Initial Commit 2024-12-29 13:56:32 +01:00
.markdownlint.yaml Initial Commit 2024-12-29 13:56:32 +01:00
Dockerfile Initial Commit 2024-12-29 13:56:32 +01:00
LICENSE Initial Commit 2024-12-29 13:56:32 +01:00
Makefile Initial Commit 2024-12-29 13:56:32 +01:00
manifest.tmpl Initial Commit 2024-12-29 13:56:32 +01:00
README.md Initial Commit 2024-12-29 13:56:32 +01:00
renovate.json Initial Commit 2024-12-29 13:56:32 +01:00

bruteforce-wallet-docker

Build Status Docker Pulls

This project contains all sources to build the container image docker.io/volkerraschek/bruteforce-wallet. The primary goal of this project is to package the binary bruteforce-wallet as container image to provide the functionally for CI/CD workflows. The source code of the binary can be found in the upstream project of bruteforce-wallet.

Usage

The following example mounts the file wallet.dat located in the same directory where the command is executed into the container filesystem as /tmp/wallet.dat. We also set some additional options, such as the password starting with foo and ending with bar. In addition, we know that the password consists only of lower case letters and is between 4 and 8 characters long.

docker run \
  --rm \
  --volume wallet.dat:/tmp/wallet.dat \
  -b foo \
  -e bar \
  -s abcdefghijklmnopqrstuvwxyz \
  -l 4 \
  -m 8 \
    /tmp/wallet.dat