🗃️ readme: rename rootfs/ to volumes/ for compose context 🗃️

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
This commit is contained in:
2026-05-05 14:35:57 -04:00
parent 91e4423fa4
commit 281fbd78fe
+2 -2
View File
@@ -9,8 +9,8 @@ From: <https://github.com/mgdigital/rarbg-selfhosted>
```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
```