From 281fbd78fe07d8eafbeaee0740835523b491496b Mon Sep 17 00:00:00 2001 From: casjay Date: Tue, 5 May 2026 14:35:57 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20readme:=20rename=20root?= =?UTF-8?q?fs/=20to=20volumes/=20for=20compose=20context=20=F0=9F=97=83?= =?UTF-8?q?=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Aligns README install/run snippets with the new convention split: rootfs/ for Dockerfile-build content (image filesystem), volumes/ for docker-compose host bind-mounts. Compose mounts, host bind paths, and runtime data dirs are renamed; Dockerfile COPY/ADD sources (where present) are preserved. README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 89d03a5..00a8677 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ From: ```shell docker run -d \ --name casjaysdevdocker-rarbg \ --v "$HOME/.local/share/srv/docker/rarbg/rootfs/config":/config \ --v "$HOME/.local/share/srv/docker/rarbg/rootfs/data":/data \ +-v "$HOME/.local/share/srv/docker/rarbg/volumes/config":/config \ +-v "$HOME/.local/share/srv/docker/rarbg/volumes/data":/data \ -p 3333:3333 \ casjaysdevdocker/rarbg ```