https://github.com/volker-raschek/bruteforce-wallet-docker
[MIRROR]: Source files of the container image volkerraschek/bruteforce-wallet
https://github.com/volker-raschek/bruteforce-wallet-docker
bruteforce-wallet charts container k8s kubernetes
Last synced: 3 months ago
JSON representation
[MIRROR]: Source files of the container image volkerraschek/bruteforce-wallet
- Host: GitHub
- URL: https://github.com/volker-raschek/bruteforce-wallet-docker
- Owner: volker-raschek
- License: other
- Created: 2024-12-29T12:33:30.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-02-18T11:03:14.000Z (3 months ago)
- Last Synced: 2025-02-18T12:22:06.177Z (3 months ago)
- Topics: bruteforce-wallet, charts, container, k8s, kubernetes
- Language: Makefile
- Homepage: https://hub.docker.com/r/volkerraschek/bruteforce-wallet
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bruteforce-wallet-docker
[](https://drone.cryptic.systems/volker.raschek/bruteforce-wallet-docker)
[](https://hub.docker.com/r/volkerraschek/bruteforce-wallet)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](https://github.com/glv2/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.```bash
docker run \
--rm \
--volume wallet.dat:/tmp/wallet.dat \
-b foo \
-e bar \
-s abcdefghijklmnopqrstuvwxyz \
-l 4 \
-m 8 \
/tmp/wallet.dat
```