This minimal pastebin application provides a fast and resource-efficient way to share text and code snippets. Built as a single binary with a low memory footprint, it utilizes a SQLite backend and compresses pastes to optimize storage. Users can easily share code with built-in syntax highlighting for over 170 languages and toggle between light and dark modes for comfortable reading.
Security and privacy are core priorities. The application encrypts entries using robust algorithms and hashes passwords to keep sensitive information safe. You have full control over the lifecycle of your shared text with flexible deletion options.
Key features include:
services:
wastebin:
image: quxfoo/wastebin:latest
container_name: wastebin
restart: unless-stopped
ports:
- 8088:8088
environment:
WASTEBIN_DATABASE_URL: sqlite:///data/wastebin.db
WASTEBIN_MAX_BODY_SIZE: 1048576
WASTEBIN_TITLE: Wastebin
WASTEBIN_SIGNING_KEY: ${WASTEBIN_SIGNING_KEY}
volumes:
- ./data:/dataWASTEBIN_SIGNING_KEY=your_secure_random_signing_key_hereAuto-fetched about 15 hours ago
Auto-fetched about 15 hours ago