Favicon of Joplin

Joplin

Capture multimedia notes, clip web pages, and sync across all devices. Collaborate with others and customize your experience, all secured by E2EE.

Joplin is a free, open-source application for taking notes and creating to-do lists. Capture your thoughts and securely access them from any device, including Windows, macOS, Linux, Android, and iOS. There's even a terminal app for command-line enthusiasts.

Your notes can be much more than just text. Add images, videos, PDFs, and audio files. You can even create math expressions and diagrams directly within the app. Use the web clipper extension for Chrome and Firefox to save web pages or take screenshots as notes.

Keep everything synchronized across your devices using services like Joplin Cloud, Dropbox, or OneDrive. The app ensures your privacy with End-To-End Encryption (E2EE), meaning only you can access your data. Your notes are saved in an open format, giving you full control and ownership.

Customize the application to fit your workflow with a wide range of plugins, custom themes, and your choice of a Rich Text or Markdown editor. You can also collaborate on notes with others by sharing them through Joplin Cloud.

Directory Structure

joplin
data
postgres
.env
docker-compose.yml

docker-compose.yml

services:
  db:
    image: postgres:15
    restart: unless-stopped
    volumes:
      - ./data/postgres:/var/lib/postgresql/data
    environment:
      POSTGRES_USER: joplin
      POSTGRES_DB: joplin
      POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}

  app:
    image: joplin/server:latest
    restart: unless-stopped
    depends_on:
      - db
    ports:
      - "22300:22300"
    environment:
      APP_PORT: 22300
      APP_BASE_URL: ${APP_BASE_URL}
      DB_CLIENT: pg
      POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
      POSTGRES_DATABASE: joplin
      POSTGRES_USER: joplin
      POSTGRES_PORT: 5432
      POSTGRES_HOST: db

.env

POSTGRES_PASSWORD=your_super_secret_postgres_password
APP_BASE_URL=http://localhost:22300

Share:

Ad
Favicon

 

  
 

Similar to Joplin

Favicon

 

  
  
Favicon

 

  
  
Favicon