LinuxServer.io has created a version under their fleet. I will be archving this container.
A docker image for Obsidian.md using the linuxserver.io's KASM base image.
Here are some example snippets to help you get started creating a container.
---
version: '3'
services:
obsidian:
image: 'rsmacapinlac/docker-obsidian:latest'
container_name: obsidian
restart: unless-stopped
ports:
- 8080:8080
volumes:
- ./obsidian/config:/config
environment:
- PUID=1000
- PGID=1000
- TZ=America/Vancouver
User the test file to build the container using the following command.
# builds and starts the container
# after, container is accessible using http://localhost:8080
docker compose -f docker-compose-test.yml up
- Sytone for the initial implementation of this.
- ilkersigirci and this issue which helped form the base of the Dockerfile.