Deploy obsidian as container

jinnabalu

Jinna Balu

Posted on September 27, 2024

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/

💖 💪 🙅 🚩
jinnabalu
Jinna Balu

Posted on September 27, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Deploy obsidian as container
obsidian Deploy obsidian as container

September 27, 2024