linuxserver/webtop.

2,148,663 177 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/webtop
Build Time 03 May 2024 18:08:57
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-ed2126ef 30 Apr 2024 at 03:57:43
ubuntu-xfce ubuntu-xfce-version-2b4a1b95 30 Apr 2024 at 04:02:39
alpine-kde alpine-kde-version-2d9f0f98 30 Apr 2024 at 03:47:58
ubuntu-kde ubuntu-kde-version-22dc4bd4 30 Apr 2024 at 04:05:55
alpine-mate alpine-mate-version-393ba7de 30 Apr 2024 at 03:44:52
ubuntu-mate ubuntu-mate-version-28eefd5a 30 Apr 2024 at 04:04:24
alpine-i3 alpine-i3-version-28af794a 30 Apr 2024 at 03:52:46
ubuntu-i3 ubuntu-i3-version-16c3bc20 30 Apr 2024 at 04:12:31
alpine-openbox alpine-openbox-version-40a281f2 30 Apr 2024 at 03:55:41
ubuntu-openbox ubuntu-openbox-version-70da10e5 30 Apr 2024 at 04:13:00
alpine-icewm alpine-icewm-version-eba7fafc 30 Apr 2024 at 03:42:46
ubuntu-icewm ubuntu-icewm-version-a376e3fb 30 Apr 2024 at 03:59:18

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-ed2126ef
    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-ed2126ef