- 30+ auto updating extensions for your standardnotes server
- pure go, no git subprocess
- setup docker as described below
- navigate to standardnotes settings -> General -> Advanced Settings -> Install Custom Extension
- take the link for the extension you want from the web UI
services:
extensions:
image: sentriz/standardnotes-extensions:latest
environment:
- SN_EXTS_LISTEN_ADDR=:80
- SN_EXTS_REPOS_DIR=/repos
- SN_EXTS_BASE_URL=https://extensions.your.domain
- SN_EXTS_UPDATE_INTERVAL_MINS=4320 # 3 days
expose:
- 80
volumes:
- ./extensions_repos:/repos
web:
...
db:
...