A lightweight, self-hosted tool for ephemeral rich text and file sharing on your local network. Designed as a quick digital “drop zone” rather than permanent storage, which prioritizes fast transfers between your devices.
- Clean, fast interface.
- Supports rich text and file uploads.
- 24-hour automatic expiration, with flexibility to extend.
- Self-hosted and accessible to any device on your local network.
- Easy Docker deployment.
services:
pastebox:
image: huffmanks/pastebox
container_name: pastebox
ports:
- "3000:3000"
volumes:
- uploads:/app/uploads
- data:/app/data
environment:
NODE_ENV: production
DATABASE_URL: ${DATABASE_URL}
NEXT_PUBLIC_APP_URL: ${NEXT_PUBLIC_APP_URL}
restart: unless-stopped
volumes:
uploads:
data:NODE_ENV=production
DATABASE_URL=file:./data/prod.db
NEXT_PUBLIC_APP_URL=http://localhost:3000docker compose up -dopen http://localhost:3000