linuxserver/webtop.

2,689,012 196 arm64 unknown unknown amd64

Build Information

General build information for this image

Docker Hub linuxserver/webtop
Build Time 28 Mar 2025 18:29:58
Base Image lsiobase/rdesktop-web
Category Utilities
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest latest 25 Mar 2025 at 04:13:14
ubuntu-xfce ubuntu-xfce 25 Mar 2025 at 04:18:38
alpine-kde alpine-kde 25 Mar 2025 at 04:30:19
ubuntu-kde ubuntu-kde 25 Mar 2025 at 04:24:01
alpine-mate alpine-mate 25 Mar 2025 at 04:12:06
ubuntu-mate ubuntu-mate 25 Mar 2025 at 04:42:04
alpine-i3 alpine-i3 25 Mar 2025 at 03:59:07
ubuntu-i3 ubuntu-i3 25 Mar 2025 at 04:26:56
alpine-openbox alpine-openbox 25 Mar 2025 at 04:01:35
ubuntu-openbox ubuntu-openbox 25 Mar 2025 at 04:18:46
alpine-icewm alpine-icewm 25 Mar 2025 at 04:03:13
ubuntu-icewm ubuntu-icewm 25 Mar 2025 at 04:14:55

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  webtop:
    image: linuxserver/webtop:latest
    container_name: webtop
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Your local timezone
      - PUID=1000 # Application user ID
      - PGID=1000 # Application group ID
    volumes:
      - /host/path/to/var/run/docker.sock:/var/run/docker.sock # Docker Socket on the system, if you want to use Docker in the container
      - /host/path/to/config:/config # Application home directory
    ports:
      - 3000:3000/tcp # Web Desktop GUI

CLI

docker create \
  --name=webtop \
  -e TZ=Europe/London `# Your local timezone` \
  -e PUID=1000 `# Application user ID` \
  -e PGID=1000 `# Application group ID` \
  -v /host/path/to/var/run/docker.sock:/var/run/docker.sock `# Docker Socket on the system, if you want to use Docker in the container` \
  -v /host/path/to/config:/config `# Application home directory` \
  -p 3000:3000/tcp `# Web Desktop GUI` \
  --restart unless-stopped \
  linuxserver/webtop:latest