From 2d8b6e1722fb7b5e9aac9c7fbf545cf72cf78f5f Mon Sep 17 00:00:00 2001 From: ChilledSlim <127540038+ChilledSlim@users.noreply.github.com> Date: Wed, 29 Mar 2023 01:01:36 -0400 Subject: [PATCH] Add default blob data location (#3613) On a new installation, Stash will default to 'blobs' (which relative to the CWD of /, becomes '/blobs'). In our recommended installation, this is NOT mapped and as a result will NOT be persistent across the container being removed or updated. So by default, we are populating blob data which will be deleted, likely leaving to some confused new users. This should also be noted for existing installations to make this a persistent path. --- docker/production/docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/production/docker-compose.yml b/docker/production/docker-compose.yml index 837e3c95c..767fe0cb7 100644 --- a/docker/production/docker-compose.yml +++ b/docker/production/docker-compose.yml @@ -36,5 +36,7 @@ services: - ./metadata:/metadata ## Any other cache content. - ./cache:/cache + ## Where to store binary blob data (scene covers, images) + - ./blobs:/blobs ## Where to store generated content (screenshots,previews,transcodes,sprites) - ./generated:/generated