88 lines
2.9 KiB
Markdown
88 lines
2.9 KiB
Markdown
---
|
|
title: OpenTalk
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, video-conferencing, app-marathon-final-rattrapage]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Video+Conferencing&app=opentalk]
|
|
---
|
|
|
|
# 📞 OpenTalk
|
|
|
|
> **OpenTalk** : Visioconférence allemande open source : rooms, scheduling, intégration calendrier, hébergé par les administrations allemandes. Alternative souveraineté à BBB/Jitsi.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [https://opentalk.eu](https://opentalk.eu) |
|
|
| **GitHub** | [https://gitlab.opencode.de/opentalk/ot-setup](https://gitlab.opencode.de/opentalk/ot-setup) |
|
|
| **License** | MIT |
|
|
| **Langage** | TypeScript/Rust |
|
|
| **Catégorie** | [[cat-video-conferencing|Video Conferencing]] |
|
|
|
|
## 📝 Description
|
|
|
|
**OpenTalk** est visioconférence allemande open source : rooms, scheduling, intégration calendrier, hébergé par les administrations allemandes. alternative souveraineté à bbb/jitsi.
|
|
|
|
Différence avec les alternatives majeures : positionnement auto-hébergé et open source, sans tracking, sans dépendance cloud propriétaire.
|
|
|
|
Pour qui : utilisateurs qui cherchent une alternative souveraine à des solutions SaaS propriétaires du même segment.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (recommandé)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
opentalk:
|
|
image: ghcr.io/ot-setup:latest
|
|
container_name: opentalk
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Europe/Paris
|
|
volumes:
|
|
- ./data:/app/data
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.opentalk.rule=Host(`opentalk.example.com`)"
|
|
- "traefik.http.routers.opentalk.entrypoints=websecure"
|
|
- "traefik.http.routers.opentalk.tls.certresolver=letsencrypt"
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-bigbluebutton]], [[app-jitsi-meet]] — alternatives dans le même segment
|
|
|
|
### Propriétaires (ce que OpenTalk remplace)
|
|
- **Zoom, Teams, Webex, Google Meet** — solutions SaaS du même domaine
|
|
|
|
## 🔐 Sécurité
|
|
|
|
- **Authentification** : vérifier la configuration par défaut (changer les credentials initiaux)
|
|
- **Exposition réseau** : derrière Traefik + TLS (Let's Encrypt) recommandé
|
|
- **Backups** : sauvegarder `./data` régulièrement
|
|
- **Mises à jour** : surveiller les releases GitHub pour patches de sécurité
|
|
|
|
## 📚 Ressources
|
|
|
|
- [GitHub https://gitlab.opencode.de/opentalk/ot-setup](https://gitlab.opencode.de/opentalk/ot-setup)
|
|
- [Site officiel](https://opentalk.eu)
|
|
- [selfh.st/apps](https://selfh.st/apps/?tag=Video+Conferencing&app=opentalk)
|
|
|
|
## Pages Liées
|
|
- [[cat-video-conferencing|Video Conferencing]] — Catégorie Video Conferencing
|
|
- [[recettes-docker-compose]] — Templates Docker
|
|
- [[securisation-home-lab]] — Sécurité
|
|
- [[glossaire-homelab]] — Vocabulaire
|