From ec086da94dc981abacc2d7ef575af22d97e583c7 Mon Sep 17 00:00:00 2001 From: David Maisonave <47364845+David-Maisonave@users.noreply.github.com> Date: Mon, 6 Jan 2025 15:44:07 -0500 Subject: [PATCH 1/3] Update README.md --- Docker/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Docker/README.md b/Docker/README.md index 2bb40a5..642d63b 100644 --- a/Docker/README.md +++ b/Docker/README.md @@ -13,6 +13,8 @@ Then use a DOS window to change to the **ws1** directory before calling the scri - Image Name - Stash Port Number +If any of the above arguments are missing, the script will prompt user for each missing argument before proceeding. + ### Example Commands: - Example usage with minumum arguments: - `CreateContainer.cmd MyContainerName "stashapp/stash:latest" 9998` From 370b0756695cf702af846a6e59acde171c812cb4 Mon Sep 17 00:00:00 2001 From: David Maisonave <47364845+David-Maisonave@users.noreply.github.com> Date: Mon, 6 Jan 2025 15:46:20 -0500 Subject: [PATCH 2/3] Update README.md --- Docker/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docker/README.md b/Docker/README.md index 642d63b..65d42e9 100644 --- a/Docker/README.md +++ b/Docker/README.md @@ -24,7 +24,6 @@ If any of the above arguments are missing, the script will prompt user for each - `CreateContainer.cmd NewContainer27.2 "stashapp/stash:v0.27.2" 9991 C:\MySharedMountPath C:\Another\Shared\Folder` - The script supports up to 6 shared mount paths. - `CreateContainer.cmd StashCnt "stashapp/stash:latest" 9991 C:\downloads C:\tmp\foo C:\img C:\share\vid E:\vids G:\vid2` - - The container gets the mount paths mounted to /external /external2 /external3 /external4 /external5 and /external6 - Example with shared mount paths with write access: - `CreateContainer.cmd ContainerName1 "stashapp/stash:latest" 9991 C:\MyShared WRITE` - Example with DLNA: @@ -33,7 +32,8 @@ If any of the above arguments are missing, the script will prompt user for each - `CreateContainer.cmd ContainerName "stashapp/stash:v0.26.2" 9992 C:\Videos SKIP` ### Shared Mount Paths -- CreateContainer.cmd can create 1-5 shared mount paths on the container. A shared mount path is a path that is a HOST path that is mounted on the container, which allows the container to access the files in the shared mount path. +- CreateContainer.cmd can create 1-6 shared mount paths on the container. A shared mount path is a path that is a HOST path that is mounted on the container, which allows the container to access the files in the host machine. + - The container gets the mount paths mounted to /external /external2 /external3 /external4 /external5 and /external6 - By default the shared mount is READ-ONLY, but by appending **WRITE** to the command line, the script will make all the shared mounts with read-write access. - Example: `CreateContainer.cmd ContainerName1 "stashapp/stash:latest" 9999 C:\MySharedMountPath WRITE` From ee3f482a8b8db83d332f6a67ecce9b5aec86063b Mon Sep 17 00:00:00 2001 From: David Maisonave <47364845+David-Maisonave@users.noreply.github.com> Date: Mon, 6 Jan 2025 15:47:06 -0500 Subject: [PATCH 3/3] Update README.md --- Docker/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docker/README.md b/Docker/README.md index 65d42e9..0e286cb 100644 --- a/Docker/README.md +++ b/Docker/README.md @@ -32,7 +32,7 @@ If any of the above arguments are missing, the script will prompt user for each - `CreateContainer.cmd ContainerName "stashapp/stash:v0.26.2" 9992 C:\Videos SKIP` ### Shared Mount Paths -- CreateContainer.cmd can create 1-6 shared mount paths on the container. A shared mount path is a path that is a HOST path that is mounted on the container, which allows the container to access the files in the host machine. +- CreateContainer.cmd can create 1-6 shared mount paths on the container. A shared mount path is a path that is a HOST path that is mounted on the container, which allows the container to access the files on the host machine. - The container gets the mount paths mounted to /external /external2 /external3 /external4 /external5 and /external6 - By default the shared mount is READ-ONLY, but by appending **WRITE** to the command line, the script will make all the shared mounts with read-write access. - Example: `CreateContainer.cmd ContainerName1 "stashapp/stash:latest" 9999 C:\MySharedMountPath WRITE`