80 lines
2.3 KiB
Markdown
80 lines
2.3 KiB
Markdown
---
|
|
title: Shotshare
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, image-sharing, screenshots, sharing, app-marathon3-batch-a]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Image+Sharing]
|
|
---
|
|
|
|
# 📸 Shotshare
|
|
|
|
> Service de partage de captures d'écran auto-hébergé.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [github.com/okiess/shotshare](https://github.com/okiess/shotshare) |
|
|
| **GitHub** | [okiess/shotshare](https://github.com/okiess/shotshare) |
|
|
| **License** | MIT |
|
|
| **Langage** | PHP / TypeScript |
|
|
| **Étoiles GitHub** | < 0.3k ⭐ |
|
|
| **Catégorie** | [[cat-image-sharing|Image Sharing]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Shotshare** est un service simple de partage de **captures d'écran**. Upload rapide, URL courte, expiration configurable, redimensionnement. Conçu pour le partage de screenshots techniques et de bugs visuels.
|
|
|
|
**Différence vs [[app-picsur]]** : Shotshare est **mono-utilisateur**, sans édition, focusé sur le workflow "screenshot → URL → partage". Picsur est plus généraliste (images diverses).
|
|
|
|
**Pour qui** : développeurs, support technique, qui partagent souvent des captures d'écran.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
shotshare:
|
|
image: ghcr.io/okiess/shotshare:latest
|
|
container_name: shotshare
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8085:3000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.shotshare.rule: "Host(`shot.example.com`)"
|
|
traefik.http.routers.shotshare.tls.certresolver: letsencrypt
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-picsur]] — Upload généraliste
|
|
- [[app-immich-drop]] — Drop d'images vers Immich
|
|
- [[app-kriti-images]] — Outil basique
|
|
- **0x0.st** — Service paste/images minimal
|
|
|
|
### Propriétaires
|
|
- **Gyazo** — Capture + partage (closed)
|
|
- **Lightshot** — Outil Windows propriétaire
|
|
|
|
## 🔐 Sécurité
|
|
- **Auth locale** : admin
|
|
- **Expiration** : URLs avec TTL
|
|
- **HTTPS** : recommandé
|
|
|
|
## 📚 Ressources
|
|
- [GitHub Shotshare](https://github.com/okiess/shotshare)
|
|
|
|
## Pages Liées
|
|
- [[cat-image-sharing]] — Catégorie Image Sharing
|
|
- [[app-picsur]] — Concurrent plus complet
|
|
- [[recettes-docker-compose]] — Templates Docker
|