From 42b7092d01f1be66088a19b7e76d30e88c9465f4 Mon Sep 17 00:00:00 2001 From: casjay Date: Tue, 5 May 2026 14:34:41 -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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cb4f247..1cdfe3c 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ dockermgr update commitment_temp ## Install and run container ```shell -dockerHome="/var/lib/srv/$USER/docker/casjaysdevdocker/commitment_temp/commitment_temp/latest/rootfs" -mkdir -p "/var/lib/srv/$USER/docker/commitment_temp/rootfs" +dockerHome="/var/lib/srv/$USER/docker/casjaysdevdocker/commitment_temp/commitment_temp/latest/volumes" +mkdir -p "/var/lib/srv/$USER/docker/commitment_temp/volumes" git clone "https://github.com/dockermgr/commitment_temp" "$HOME/.local/share/CasjaysDev/dockermgr/commitment_temp" cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/commitment_temp/rootfs/." "$dockerHome/" docker run -d \ @@ -47,8 +47,8 @@ services: - TZ=America/New_York - HOSTNAME=commitment_temp volumes: - - "/var/lib/srv/$USER/docker/casjaysdevdocker/commitment_temp/commitment_temp/latest/rootfs/data:/data:z" - - "/var/lib/srv/$USER/docker/casjaysdevdocker/commitment_temp/commitment_temp/latest/rootfs/config:/config:z" + - "/var/lib/srv/$USER/docker/casjaysdevdocker/commitment_temp/commitment_temp/latest/volumes/data:/data:z" + - "/var/lib/srv/$USER/docker/casjaysdevdocker/commitment_temp/commitment_temp/latest/volumes/config:/config:z" ports: - 80:80 restart: always