From a132962ed3e8021691486c1635c63d36fa2776bc Mon Sep 17 00:00:00 2001 From: Naz Date: Mon, 15 Sep 2025 21:47:00 +0100 Subject: =?UTF-8?q?=F0=9F=93=9Adocs:=20add=20compose.yml=20for=20ref=20and?= =?UTF-8?q?=20update=20README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 17 ++++++++++++++++- compose.yml | 8 ++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 compose.yml diff --git a/README.md b/README.md index 8d1c1d6..bd9209a 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,25 @@ Simple but customizable solution for storing your Browser bookmarks. ## Installation +### Cargo + ```sh cargo install --git https://github.com/ndpm13/sbm-rs ``` +### Compose file + +```yml +services: + sbm-rs: + container_name: sbm-rs + image: ghcr.io/ndpm13/sbm-rs:0.1.0 + volumes: + - ./config:/root/.config/sbm-rs + ports: + - "8080:8080" +``` + ## Usage Configuration files for sbm-rs are stored by default in @@ -69,7 +84,7 @@ theme: ## To-Do List - [ ] CLI for managing bookmarks -- [ ] Container image +- [x] Container image - [ ] Browser extension ## License diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..87d3f61 --- /dev/null +++ b/compose.yml @@ -0,0 +1,8 @@ +services: + sbm-rs: + container_name: sbm-rs + image: ghcr.io/ndpm13/sbm-rs:0.1.0 + volumes: + - ./config:/root/.config/sbm-rs + ports: + - "8080:8080" -- cgit v1.2.3