- https://obsidian.md/ note taking app
- 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
Run the application docker-compose up -d
Application is available on http://localhost:3000/
Top comments (0)