From 37a846c5c270e2c2d4e0e9ce2c33846aeb306e65 Mon Sep 17 00:00:00 2001 From: Flancian <0@flancia.org> Date: Sat, 24 Feb 2024 15:11:56 +0100 Subject: [PATCH] autopushed --- silverbullet.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/silverbullet.md b/silverbullet.md index 7cc8f7386..8b8082cfe 100644 --- a/silverbullet.md +++ b/silverbullet.md @@ -10,4 +10,18 @@ I started using [[silver bullet]] on [[February 2024]] and I think I'm not going I thought I'd keep a node here detailing what I had to do to turn it into a good [[Agora editor]] for my existing [[digital garden]]. Not much, it turns out! ### Run on docker -I'm running it on docker on port [[5019]]. The default port is [[3000]] but in my case [[5019]] made sense because I run [[agora server]] in [[5017]] and [[agora bridge]] in [[5018]]. This choice is purely personal of course. \ No newline at end of file +I'm running it on docker on port [[5019]]. The default port is [[3000]] but in my case [[5019]] made sense because I run [[agora server]] in [[5017]] and [[agora bridge]] in [[5018]]. This choice is purely personal of course. + +This is the very simple script I use to run it as a daemon: + +```bash +#!/bin/bash -x +docker stop silverbullet +docker rm silverbullet +docker run -d --restart unless-stopped --name silverbullet -p 5019:3000 -v /home/flancian/garden:/space zefhemel/silverbullet +``` +More instructions in the official documentation. + +### Import core + +https://silverbullet.md/Library/Core \ No newline at end of file