linuxserver/webtop.

2,463,281 192 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/webtop
Build Time 19 Nov 2024 04:39:40
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-450d9427 19 Nov 2024 at 04:13:55
ubuntu-xfce ubuntu-xfce-version-48281325 19 Nov 2024 at 04:18:17
alpine-kde alpine-kde-version-120e7788 19 Nov 2024 at 04:13:25
ubuntu-kde ubuntu-kde-version-b16338bd 19 Nov 2024 at 04:28:04
alpine-mate alpine-mate-version-2721c49b 19 Nov 2024 at 04:05:25
ubuntu-mate ubuntu-mate-version-04d8319c 19 Nov 2024 at 04:20:22
alpine-i3 alpine-i3-version-8938f73a 19 Nov 2024 at 04:07:01
ubuntu-i3 ubuntu-i3-version-98863cab 19 Nov 2024 at 04:12:50
alpine-openbox alpine-openbox-version-b430846e 19 Nov 2024 at 04:13:25
ubuntu-openbox ubuntu-openbox-version-31687d90 19 Nov 2024 at 04:17:14
alpine-icewm alpine-icewm-version-8f6a9743 19 Nov 2024 at 04:03:27
ubuntu-icewm ubuntu-icewm-version-25de2b2d 19 Nov 2024 at 04:12:49

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-450d9427
    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-450d9427