DEV Community

Jinna Balu
Jinna Balu

Posted on

Deploy obsidian as container

  1. https://obsidian.md/ note taking app
  2. Configuration saved in github repo infinite-docker-compose

Create the docker-compose.yml for the obsidian

services:
  obsidian:
    image: lscr.io/linuxserver/obsidian:latest
    container_name: obsidian
    ports:
      - "3000:3000"
      - "3001:3001"
    shm_size: "1gb"
    restart: unless-stopped
Enter fullscreen mode Exit fullscreen mode

Run the application docker-compose up -d

Application is available on http://localhost:3000/

Top comments (0)