linuxserver/webtop.

1,679,502 153 amd64 arm64

Build Information

General build information for this image

Docker Hub linuxserver/webtop
Build Time 26 Sep 2023 04:15:07
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-62fec0e1 26 Sep 2023 at 03:56:16
ubuntu-xfce ubuntu-xfce-version-900fa477 26 Sep 2023 at 04:07:18
alpine-kde alpine-kde-version-eff1d156 26 Sep 2023 at 03:46:39
ubuntu-kde ubuntu-kde-version-7406509e 26 Sep 2023 at 04:08:55
alpine-mate alpine-mate-version-6e242484 26 Sep 2023 at 03:40:25
ubuntu-mate ubuntu-mate-version-42da2e56 26 Sep 2023 at 04:08:52
alpine-i3 alpine-i3-version-cf60b3f1 26 Sep 2023 at 03:40:46
ubuntu-i3 ubuntu-i3-version-944be4dc 26 Sep 2023 at 03:57:08
alpine-openbox alpine-openbox-version-0cc8b2e8 26 Sep 2023 at 03:42:15
ubuntu-openbox ubuntu-openbox-version-8fb77030 26 Sep 2023 at 04:02:14
alpine-icewm alpine-icewm-version-822053d2 26 Sep 2023 at 03:41:06
ubuntu-icewm ubuntu-icewm-version-34a261e9 26 Sep 2023 at 03:57:20

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-62fec0e1
    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-62fec0e1