StackEdit Docker

In-browser Markdown editor

Docker

docker run -d --name stackedit -p 8080:8080 benweet/stackedit
docker run -d --name stackedit -p 8080:8080 -e STACKEDIT_THEME="dark" benweet/stackedit
docker run -d --name stackedit -p 8080:8080 -v /path/to/data:/data benweet/stackedit

http://localhost:8080/

Docker Compose

version: '3.3'
services:
  stackedi:
    image: benweet/stackedit
    restart: always
    ports:
      - 8080:8080
    volumes:
      - ./data:/data

Screenshots

https://stackedit.io/static/landing/syntax-highlighting.gif

https://stackedit.io/static/landing/scroll-sync.gif

https://stackedit.io/static/landing/mermaid.gif

References