Briefkasten provides a clean and straightforward way to manage your digital life by saving and organizing links. It acts as your personal letterbox for the web, ensuring you never lose track of interesting articles, useful resources, or inspiring content again. Instead of juggling countless open tabs or messy bookmark folders in your browser, you get a dedicated space to build your own personal library of web content.
This tool is designed for simplicity and efficiency, helping you focus on what matters. Key benefits include:
services:
db:
image: postgres:15-alpine
restart: always
volumes:
- ./db-data:/var/lib/postgresql/data
environment:
POSTGRES_USER: briefkasten
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: briefkasten
briefkasten:
image: ndom91/briefkasten:latest
restart: always
ports:
- 3000:3000
environment:
DATABASE_URL: postgres://briefkasten:${POSTGRES_PASSWORD}@db:5432/briefkasten
NEXTAUTH_URL: http://localhost:3000
NEXTAUTH_SECRET: ${NEXTAUTH_SECRET}
depends_on:
- dbPOSTGRES_PASSWORD=your_secure_postgres_password
NEXTAUTH_SECRET=your_generated_openssl_secret_stringAuto-fetched about 21 hours ago