77 lines
2.3 KiB
Markdown
77 lines
2.3 KiB
Markdown
---
|
|
title: LinuxServer Webtop
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, web-desktop, app-marathon3-rattrapage-final-b]
|
|
confidence: high
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=web-desktop&app=linuxserver-webtop]
|
|
---
|
|
|
|
# 🖥️ LinuxServer Webtop
|
|
|
|
> Images Docker de bureaux Linux (XFCE, KDE, i3, MATE...) accessibles via navigateur via RDP/KasmVNC.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [docs.linuxserver.io/general/understanding-baseimage-docker-containers](https://docs.linuxserver.io/general/understanding-baseimage-docker-containers/) |
|
|
| **GitHub** | [linuxserver/docker-webtop](https://github.com/linuxserver/docker-webtop) |
|
|
| **License** | GPL-3.0 |
|
|
| **Langage** | Dockerfile / Bash |
|
|
| **Étoiles GitHub** | ~3k ⭐ |
|
|
| **Catégorie** | [[cat-web-desktop|Web Desktop]] |
|
|
|
|
## 📝 Description
|
|
|
|
**LinuxServer Webtop** propose des images Docker pré-packagées de bureaux Linux complets, exposés en HTTP via KasmVNC (noVNC), accessibles depuis n'importe quel navigateur. Différence vs Puter : vraie session Linux avec GUI native (Firefox, VSCode, GIMP), pas une surcouche JS. Pour qui : équipes qui ont besoin d'un poste de travail Linux distant éphémère (test, démo, classe).
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (recommandé)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
webtop:
|
|
image: lscr.io/linuxserver/webtop:debian-xfce
|
|
container_name: webtop
|
|
restart: unless-stopped
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Paris
|
|
volumes:
|
|
- webtop-config:/config
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.routers.webtop.rule=Host(`webtop.example.com`)
|
|
volumes:
|
|
webtop-config:
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-puter]] — OS web full JS
|
|
- [[app-kasm-workspaces]] — Workspaces web isolés
|
|
|
|
### Propriétaires
|
|
- **Windows 365** — Cloud PC Microsoft
|
|
- **Citrix Virtual Apps** — VDI managé
|
|
|
|
## 🔐 Sécurité
|
|
- Authentification : aucune par défaut (VNC en local)
|
|
- Recommandé : reverse proxy + authentification SSO
|
|
|
|
## 📚 Ressources
|
|
- [Documentation](https://docs.linuxserver.io/images/docker-webtop)
|
|
- [GitHub](https://github.com/linuxserver/docker-webtop)
|
|
|
|
## Pages Liées
|
|
- [[cat-web-desktop]] — Catégorie Web Desktop
|
|
- [[app-kasm-workspaces]] — Concurrent
|
|
- [[recettes-docker-compose]] — Templates Docker
|