Initial vault setup
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
---
|
||||
title: Immich-Drop
|
||||
created: 2026-06-08
|
||||
updated: 2026-06-08
|
||||
type: app
|
||||
tags: [catalogue, image-sharing, immich, sharing, app-marathon3-batch-a]
|
||||
confidence: medium
|
||||
contested: false
|
||||
sources: [https://selfh.st/apps/?tag=Image+Sharing, https://github.com/nicholasgasior/immich-drop]
|
||||
---
|
||||
|
||||
# 📸 Immich-Drop
|
||||
|
||||
> Point de drop pour envoyer rapidement des photos à une instance Immich.
|
||||
|
||||
## 📋 Informations Générales
|
||||
|
||||
| Champ | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Site web** | [github.com/nicholasgasior/immich-drop](https://github.com/nicholasgasior/immich-drop) |
|
||||
| **GitHub** | [nicholasgasior/immich-drop](https://github.com/nicholasgasior/immich-drop) |
|
||||
| **License** | MIT |
|
||||
| **Langage** | TypeScript / React |
|
||||
| **Étoiles GitHub** | < 0.3k ⭐ |
|
||||
| **Catégorie** | [[cat-image-sharing|Image Sharing]] |
|
||||
|
||||
## 📝 Description
|
||||
|
||||
**Immich-Drop** est une mini-app web qui s'interface avec une instance Immich : tu drag&drop des images depuis ton téléphone/PC, elles sont uploadées directement dans un album Immich de ton choix. Permet le partage de photos avec des amis/famille sans leur créer de compte Immich.
|
||||
|
||||
**Différence vs [[app-picsur]]** : Immich-Drop = extension d'Immich (réutilise son storage). Picsur = standalone. L'écosystème Immich (reconnaissance faciale, géoloc) reste accessible.
|
||||
|
||||
**Pour qui** : utilisateurs Immich qui veulent partager un album avec des non-utilisateurs.
|
||||
|
||||
## 🚀 Installation
|
||||
|
||||
### Docker Compose
|
||||
|
||||
```yaml
|
||||
version: '3.8'
|
||||
services:
|
||||
immich-drop:
|
||||
image: ghcr.io/nicholasgasior/immich-drop:latest
|
||||
container_name: immich-drop
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8084:3000"
|
||||
environment:
|
||||
- IMMICH_BASE_URL=https://photos.example.com
|
||||
- IMMICH_API_KEY=***
|
||||
labels:
|
||||
traefik.enable: "true"
|
||||
traefik.http.routers.immichdrop.rule: "Host(`drop.example.com`)"
|
||||
traefik.http.routers.immichdrop.tls.certresolver: letsencrypt
|
||||
```
|
||||
|
||||
## 🔄 Alternatives
|
||||
|
||||
### Open Source
|
||||
- [[app-picsur]] — Service standalone
|
||||
- **Immich Native** — Partage d'album natif
|
||||
- **Ente Photos** — Stockage photo E2E
|
||||
- **Stingle** — Photo + storage
|
||||
|
||||
### Propriétaires
|
||||
- **Google Photos** — Stockage cloud
|
||||
- **iCloud Photos** — Écosystème Apple
|
||||
|
||||
## 🔐 Sécurité
|
||||
- **API Key** Immich : requise (à stocker côté serveur)
|
||||
- **Token partagé** : pour limiter l'accès au drop
|
||||
- **HTTPS** : obligatoire pour partage
|
||||
|
||||
## 📚 Ressources
|
||||
- [GitHub Immich-Drop](https://github.com/nicholasgasior/immich-drop)
|
||||
- [Immich](https://immich.app/)
|
||||
|
||||
## Pages Liées
|
||||
- [[cat-image-sharing]] — Catégorie Image Sharing
|
||||
- [[app-picsur]] — Alternative standalone
|
||||
- [[recettes-docker-compose]] — Templates Docker
|
||||
Reference in New Issue
Block a user