Designed for the ultimate data hoarder, this tool lets you save everything you find interesting—from links and notes to images and PDFs. The core of the platform is its powerful AI engine that automatically tags all your content, making retrieval faster and more intuitive than ever before. Stop manually organizing and start building your personal, searchable knowledge base.
Key features include:
services:
karakeep:
image: ghcr.io/karakeep/karakeep:latest
container_name: karakeep
restart: unless-stopped
ports:
- "3000:3000"
environment:
- DATABASE_URL=postgresql://karakeep:${POSTGRES_PASSWORD}@db:5432/karakeep
- NEXTAUTH_SECRET=${NEXTAUTH_SECRET}
- NEXTAUTH_URL=${NEXTAUTH_URL}
volumes:
- ./media:/app/media
- ./data:/app/data
depends_on:
- db
db:
image: postgres:16-alpine
container_name: karakeep-db
restart: unless-stopped
environment:
- POSTGRES_USER=karakeep
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=karakeep
volumes:
- ./postgres-data:/var/lib/postgresql/dataPOSTGRES_PASSWORD=secure_database_password
NEXTAUTH_SECRET=generate_a_secure_random_string_here
NEXTAUTH_URL=http://localhost:3000Auto-fetched about 1 hour ago
Auto-fetched about 1 hour ago