From 5dfbd23f276e72b34378dcc9fcf4f3ce94f4bb9b Mon Sep 17 00:00:00 2001
From: Covalent <58121030+lukehmcc@users.noreply.github.com>
Date: Wed, 5 Jun 2024 09:31:48 -0400
Subject: [PATCH 1/2] Update README.md

add possible configurable paths to the compose setup
---
 README.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index cfc7680..4da532e 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,9 @@ services:
   s5-node:
     image: ghcr.io/s5-dev/node:latest
     volumes:
-      - /local/path/to/config:/config
+      - ./config:/config
+      - ./db:/db # optional
+      - /tmp/s5:/cache # optional
     ports:
       - "5050:5050"
     restart: unless-stopped

From 5e47abaa8dc2addc1b868e6e3fe400978e27d391 Mon Sep 17 00:00:00 2001
From: Covalent <58121030+lukehmcc@users.noreply.github.com>
Date: Wed, 5 Jun 2024 09:41:10 -0400
Subject: [PATCH 2/2] Update README.md

---
 README.md | 1 -
 1 file changed, 1 deletion(-)

diff --git a/README.md b/README.md
index 4da532e..0f6c1f6 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,6 @@ A basic config file is generated for you, just make sure the path to the directo
 
 Or run it with docker compose
 ```docker
-version: '3'
 services:
   s5-node:
     image: ghcr.io/s5-dev/node:latest