linuxserver/webtop.

2,581,605 195 amd64 unknown arm64 unknown

Build Information

General build information for this image

Docker Hub linuxserver/webtop
Build Time 11 Feb 2025 05:03:24
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 11 Feb 2025 at 04:24:41
ubuntu-xfce ubuntu-xfce 11 Feb 2025 at 04:39:34
alpine-kde alpine-kde 11 Feb 2025 at 04:17:34
ubuntu-kde ubuntu-kde 11 Feb 2025 at 04:52:29
alpine-mate alpine-mate 11 Feb 2025 at 04:17:22
ubuntu-mate ubuntu-mate 11 Feb 2025 at 04:54:40
alpine-i3 alpine-i3 11 Feb 2025 at 04:17:05
ubuntu-i3 ubuntu-i3 11 Feb 2025 at 04:20:14
alpine-openbox alpine-openbox 11 Feb 2025 at 04:10:01
ubuntu-openbox ubuntu-openbox 11 Feb 2025 at 04:24:36
alpine-icewm alpine-icewm 11 Feb 2025 at 04:12:18
ubuntu-icewm ubuntu-icewm 11 Feb 2025 at 04:30:29

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