linuxserver/webtop.

2,759,450 198 unknown arm64 unknown amd64

Build Information

General build information for this image

Docker Hub linuxserver/webtop
Build Time 13 May 2025 04:46:39
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 13 May 2025 at 04:32:44
alpine-kde alpine-kde 13 May 2025 at 04:15:45
ubuntu-kde ubuntu-kde 13 May 2025 at 04:26:33
alpine-mate alpine-mate 13 May 2025 at 04:19:04
ubuntu-mate ubuntu-mate 13 May 2025 at 04:32:59
alpine-i3 alpine-i3 13 May 2025 at 04:05:44
ubuntu-i3 ubuntu-i3 13 May 2025 at 04:17:18
alpine-openbox alpine-openbox 13 May 2025 at 04:21:53
ubuntu-openbox ubuntu-openbox 13 May 2025 at 04:22:14
alpine-icewm alpine-icewm 13 May 2025 at 04:05:45
ubuntu-icewm ubuntu-icewm 13 May 2025 at 04:25:28

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