The docker-compose file of PhotoPrism defines the orignals folder to be inside {APP_DATA_DIR}. But that does not make much sense, because users normally don't have access to that folder. Instead the originals folder should point to the /Photos directory of umbrels home directory.
So change
photoprism %diff docker-compose.yml docker-compose.yml.bak
16c16
< - ${APP_DATA_DIR}/originals:/photoprism/originals
---
> - ${UMBREL_ROOT}/home/Photos:/photoprism/originals
That would allow PhotoPrism to index and show all photos the user stores in the Photos directory.
The docker-compose file of PhotoPrism defines the
orignalsfolder to be inside{APP_DATA_DIR}. But that does not make much sense, because users normally don't have access to that folder. Instead theoriginalsfolder should point to the/Photosdirectory of umbrelshomedirectory.So change
That would allow PhotoPrism to index and show all photos the user stores in the
Photosdirectory.