linuxserver/webtop.

1,541,642 124 amd64 arm arm64

Build Information

General build information for this image

Docker Hub linuxserver/webtop
Build Time 19 Mar 2023 20:26:51
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-4.16-r0 19 Mar 2023 at 09:48:29
ubuntu-xfce ubuntu-xfce-version-55d853c4 19 Mar 2023 at 09:54:48
alpine-kde 5.24.5-alpine-kde 19 Mar 2023 at 09:45:15
ubuntu-kde ubuntu-kde-version-c8bf05b8 19 Mar 2023 at 10:03:22
alpine-mate 1.26.0-alpine-mate 19 Mar 2023 at 09:40:47
ubuntu-mate ubuntu-mate-version-1e9e876c 19 Mar 2023 at 10:01:54
alpine-i3 4.20.1-alpine-i3 19 Mar 2023 at 09:31:36
ubuntu-i3 ubuntu-i3-version-8ebfea25 19 Mar 2023 at 09:53:56
alpine-openbox 3.6.1-alpine-openbox 19 Mar 2023 at 09:32:50
ubuntu-openbox ubuntu-openbox-version-ac9a5913 19 Mar 2023 at 09:52:41
alpine-icewm 3.3.2-alpine-icewm 14 Mar 2023 at 10:49:17
ubuntu-icewm ubuntu-icewm-version-34a22958 19 Mar 2023 at 09:52:00

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-4.16-r0
    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-4.16-r0