Sign inSign up

imvickykumar999/onion-vanity

By imvickykumar999

•Updated 6 months ago

https://github.com/imvickykumar999/Vanity-Image

Image
1

494

imvickykumar999/onion-vanity repository overview

⁠Onion Vanity

A Flask web app for generating vanity Tor onion addresses using mkp224o. This repository includes a Docker image published to Docker Hub.

 Dark Web : http://vanity3yyoibkcgj6xbsvr72oh2prmiky5bbe7ogxyq662ewhpdsaeqd.onion/

WhatsApp Image 2026-04-09 at 1 56 05 PM ss2

⁠Docker Hub

Pull the image from Docker Hub:

docker pull imvickykumar999/onion-vanity:latest

⁠Run the container

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

⁠Stop and remove the container

docker stop onion-vanity
docker rm onion-vanity

⁠Notes

  • The app exposes port 2000.
  • Generated onion folders are stored inside the container at /app/mkp224o/onions.
  • If you want to persist generated data, mount a host directory to /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

⁠Fixing host permissions

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

Tag summary

Content type

Image

Digest

sha256:603bbbf4a…

Size

53.2 MB

Last updated

6 months ago

docker pull imvickykumar999/onion-vanity