Skip to content

Instantly share code, notes, and snippets.

@ankitrgadiya
Created December 4, 2022 15:59
Show Gist options
  • Save ankitrgadiya/51c54bd35fe0cba60f43e20a1832ada7 to your computer and use it in GitHub Desktop.
Save ankitrgadiya/51c54bd35fe0cba60f43e20a1832ada7 to your computer and use it in GitHub Desktop.
SilverBullet Docker Compose
services:
silverbullet:
user: "1001"
image: denoland/deno:alpine
init: true
environment:
TINI_SUBREAPER: 1
volumes:
- ../../data/silverbullet/notes:/notes
- ../../data/silverbullet/deno:/deno-dir
ports:
- "30008:30008"
restart: always
command:
[
"run",
"--allow-all",
"--unstable",
"https://get.silverbullet.md",
"--port",
"30008",
"--db",
"silverbullet.db",
"/notes",
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment