this post was submitted on 15 Jul 2023
216 points (99.1% liked)

Selfhosted

37952 readers
382 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

Hey, I'm wondering what everyone's solution is for self hosted "cloud" storage of photos? I've been running a PhotoPrism server on my Synology for a while but it's missing some features I'd like to have. While we've set up auto-uploading from different phones to the web server, I haven't found an easy way to share read-only access to the pictures or specific albums. There is an admin login, but no way (that I've found) to create multiple users with different permissions.

So SelfHosted lemmy, what's your solve for photo storage, sorting, and sharing?

you are viewing a single comment's thread
view the rest of the comments
[–] warmaster 0 points 1 year ago (2 children)

I'm planning my homelab, and from the research I've done, Immich is the best but not ready for production and it can't use an already existing photo library. NextCloud memories is the next best alternative, and supports already existing libraries.

[–] [email protected] 3 points 1 year ago (1 children)

Immich can use existing libraries, either by importing (copying) existing files, or just by adding an existing folder of files in place.

[–] warmaster 2 points 1 year ago (1 children)

Importing is another thing. But using an existing folder is exactly what I want. Is this feature new ?

[–] [email protected] 4 points 1 year ago* (last edited 1 year ago) (1 children)

I think it's pretty new, in the last month or so. It's currently something you have to run manually with the CLI to do an import, but they should eventually have it added into the web interface and run automatically.

https://immich.app/docs/features/bulk-upload#importing-existing-libraries

The important thing is the --import flag which adds files without copying them.

Personally I run the CLI command inside the immich-server container, here's the full command to make life easier since this took me a bit to figure out, make sure the directory is mounted into both the immich-server and immich-microservices containers. You can mount it as :ro if you want (I did) to make sure Immich can only read the files and not change them.

immich upload --key apikeygoeshere --server http://localhost:3001 --recursive /some/path/to/existing/photos --import

[–] warmaster 1 points 1 year ago

Amazing ! Thanks for sharing!

[–] [email protected] 1 points 1 year ago

A PR was opened last week to add the biggest first element of external library support. Hopefully in the relatively near future it'll be merged. I'll be giving it a shot when it merges.