linuxserver/webtop.

2,481,980 191 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/webtop
Build Time 10 Dec 2024 13:55:12
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 version-13ce90c4 10 Dec 2024 at 04:17:31
ubuntu-xfce ubuntu-xfce-version-4836f3b3 03 Dec 2024 at 04:31:31
alpine-kde alpine-kde-version-0c58bf76 10 Dec 2024 at 04:24:57
ubuntu-kde ubuntu-kde-version-59cbf014 03 Dec 2024 at 04:41:21
alpine-mate alpine-mate-version-3f66f786 10 Dec 2024 at 04:07:36
ubuntu-mate ubuntu-mate-version-d3004753 10 Dec 2024 at 04:34:43
alpine-i3 alpine-i3-version-bd37196f 10 Dec 2024 at 04:01:36
ubuntu-i3 ubuntu-i3-version-17df2e58 03 Dec 2024 at 04:24:55
alpine-openbox alpine-openbox-version-7a4c3334 10 Dec 2024 at 04:06:04
ubuntu-openbox ubuntu-openbox-version-c0f8b95e 03 Dec 2024 at 04:32:31
alpine-icewm alpine-icewm-version-41d3d159 10 Dec 2024 at 04:10:57
ubuntu-icewm ubuntu-icewm-version-2f22a5bb 03 Dec 2024 at 04:31:23

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:version-13ce90c4
    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:version-13ce90c4