https://github.com/imvickykumar999/Vanity-Image
494
Onion VanityA Flask web app for generating vanity Tor onion addresses using mkp224o.
This repository includes a Docker image published to Docker Hub.
Pull the image from Docker Hub:
docker pull imvickykumar999/onion-vanity:latest
Start the app in a Docker container:
docker run -d --name onion-vanity -p 2000:2000 imvickykumar999/onion-vanity:latest
Then open your browser at:
http://localhost:2000
docker stop onion-vanity
docker rm onion-vanity
2000./app/mkp224o/onions./app/mkp224o/onions.Example with persistent host volume:
docker run -d --name onion-vanity -p 2000:2000 -v "$PWD/onions":/app/mkp224o/onions imvickykumar999/onion-vanity:latest
If the host onions folder is root-owned from a previous container run, you can reset ownership before starting the container:
sudo chown -R $(id -u):$(id -g) onions
To build the image with your host user ID and keep generated files writable on the host, rebuild with:
docker build --build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g) -t imvickykumar999/onion-vanity:latest .
docker push imvickykumar999/onion-vanity:latest
Content type
Image
Digest
sha256:603bbbf4a…
Size
53.2 MB
Last updated
6 months ago
docker pull imvickykumar999/onion-vanity