Yopass
Self-HostedSecure self-hosted pastebin with client-side encryption and auto-expiry
Overview
Yopass is a privacy-first pastebin that uses client-side end-to-end encryption to protect sensitive text or files. It offers auto-expiry options (one-time access or time limits like 1h/1d/1w) to eliminate long-term data exposure. The server only stores encrypted blobs—never plaintext—so your data remains confidential even if compromised. Easy to self-host via Docker (with optional Redis), Kubernetes, or standalone binary, ideal for teams/individuals needing a private alternative to public pastebins.
Self-Hosting Resources
Below is a reference structure for docker-compose.yml.
⚠️ Do NOT run blindly. Replace placeholders with official values.
version: '3'
services:
yopass:
image: <OFFICIAL_IMAGE_NAME>:latest
container_name: yopass
ports:
- "8080:<APP_INTERNAL_PORT>"
volumes:
- ./data:/app/data
restart: unless-stopped Key Features
- Client-side end-to-end encryption
- Auto-expiry (one-time access or time-limited)
- File upload support
- Lightweight Docker/Kubernetes deployment
Frequently Asked Questions
? Is Yopass hard to install?
No—Yopass deploys in minutes via Docker (recommended: includes optional Redis for storage), Kubernetes manifest, or standalone binary. For Docker, run a single command to start Yopass and Redis, or connect to an existing Redis server. No complex dependencies beyond Redis (optional for in-memory testing setups).
? Is Yopass a good alternative to Pastebin.com?
Yes—unlike Pastebin.com (which stores unencrypted data by default and requires paid plans for privacy), Yopass uses client-side encryption to keep data confidential. Auto-expiry and no account requirement make it a more secure choice for sensitive information.
? Is Yopass completely free?
Yes—Yopass is open-source (MIT license) with no hidden costs or paid tiers. You can self-host it for free using your own server resources, and all features (file uploads, encryption, auto-expiry) are available without subscriptions.
Top Alternatives
People Also Ask about Yopass
Tool Info
Pros
- ⊕ Server never stores plaintext data
- ⊕ No user account required
- ⊕ Open-source (MIT license) and auditable
Cons
- ⊖ Decryption key is embedded in the shareable URL
- ⊖ Minimal UI customization options
- ⊖ Requires basic server/Docker knowledge for self-hosting