linuxserver/webtop.

2,093,186 175 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/webtop
Build Time 23 Apr 2024 14:22:19
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-29500d52 22 Apr 2024 at 20:26:43
ubuntu-xfce ubuntu-xfce-version-1e71751f 22 Apr 2024 at 19:35:45
alpine-kde alpine-kde-version-96d2251c 23 Apr 2024 at 03:47:26
ubuntu-kde ubuntu-kde-version-3c49acc4 23 Apr 2024 at 04:29:38
alpine-mate alpine-mate-version-59d4baff 23 Apr 2024 at 03:46:37
ubuntu-mate ubuntu-mate-version-8df36b39 22 Apr 2024 at 19:37:14
alpine-i3 alpine-i3-version-8b040320 23 Apr 2024 at 03:44:08
ubuntu-i3 ubuntu-i3-version-a8f2ba80 22 Apr 2024 at 19:38:04
alpine-openbox alpine-openbox-version-72aa5c76 23 Apr 2024 at 03:52:08
ubuntu-openbox ubuntu-openbox-version-d1c774e0 22 Apr 2024 at 19:35:32
alpine-icewm alpine-icewm-version-67d56877 23 Apr 2024 at 03:44:01
ubuntu-icewm ubuntu-icewm-version-22095149 22 Apr 2024 at 19:36:21

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-29500d52
    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-29500d52