Selfhosted
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:
-
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
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.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
view the rest of the comments
Immich can use existing libraries, either by importing (copying) existing files, or just by adding an existing folder of files in place.
Importing is another thing. But using an existing folder is exactly what I want. Is this feature new ?
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 theimmich-server
andimmich-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
Amazing ! Thanks for sharing!