Manage your personal files effectively with a self-hosted document management system designed for private use. This backend server handles the heavy lifting of organizing your digital life, offering a robust REST-API that connects to a mobile-friendly web interface. You can upload PDF files, assign titles, and sort them into a customized hierarchy of folders and subfolders.
Key features include:
Deploy the system quickly using Docker Compose to maintain complete control over your private documents.
services:
everydocs:
image: jonashellmann/everydocs:latest
restart: unless-stopped
ports:
- "8080:80"
volumes:
- ./storage:/app/storage
- ./db:/app/db
environment:
- SECRET_KEY_BASE=${SECRET_KEY_BASE}SECRET_KEY_BASE=generate_a_secure_random_hex_string_hereAuto-fetched about 19 hours ago
Auto-fetched about 19 hours ago