AppsKnowledge Management ToolsObsidianLinuxserver Obsidian

Docker Obsidian

Obsidian is a note-taking app that lets you create, link, and organize your notes on your device, with hundreds of plugins and themes to customize your workflow.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
 
services:
  obsidian:
    image: lscr.io/linuxserver/obsidian:latest
    container_name: obsidian
    security_opt:
      - seccomp:unconfined #optional
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /path/to/config:/config
    ports:
      - 3000:3000
      - 3001:3001
    devices:
      - /dev/dri:/dev/dri #optional
    shm_size: "1gb"
    restart: unless-stopped

Resources

Website: https://obsidian.md/

GitHub: https://github.com/obsidianmd

Docker Hub (LinuxServer.io): https://hub.docker.com/r/linuxserver/obsidian

Configuration: https://github.com/linuxserver/docker-obsidian