Skip to content

Commit

Permalink
Add default blob data location (#3613)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ChilledSlim authored Mar 29, 2023
1 parent cb8fc37 commit 2d8b6e1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker/production/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2d8b6e1

Please sign in to comment.