linuxserver/webtop.

2,770,382 198 unknown arm64 unknown amd64

Build Information

General build information for this image

Docker Hub linuxserver/webtop
Build Time 21 May 2025 02:18:49
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 13 May 2025 at 04:22:40
ubuntu-xfce ubuntu-xfce 20 May 2025 at 04:23:24
alpine-kde alpine-kde 20 May 2025 at 04:20:48
ubuntu-kde ubuntu-kde 20 May 2025 at 04:45:25
alpine-mate alpine-mate 20 May 2025 at 04:18:57
ubuntu-mate ubuntu-mate 20 May 2025 at 04:44:19
alpine-i3 alpine-i3 20 May 2025 at 04:04:37
ubuntu-i3 ubuntu-i3 20 May 2025 at 04:26:56
alpine-openbox alpine-openbox 20 May 2025 at 04:19:13
ubuntu-openbox ubuntu-openbox 20 May 2025 at 04:20:18
alpine-icewm alpine-icewm 20 May 2025 at 04:05:46
ubuntu-icewm ubuntu-icewm 20 May 2025 at 04:26:50

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