linuxserver/webtop.

2,327,561 186 amd64 arm64

Build Information

General build information for this image

Docker Hub linuxserver/webtop
Build Time 26 Jul 2024 17:17:06
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-678b95ed 23 Jul 2024 at 04:31:14
ubuntu-xfce ubuntu-xfce-version-b46b9e76 23 Jul 2024 at 04:47:34
alpine-kde alpine-kde-version-dcb9192d 23 Jul 2024 at 04:14:47
ubuntu-kde ubuntu-kde-version-cbde72e4 23 Jul 2024 at 04:18:00
alpine-mate alpine-mate-version-f0ff1779 23 Jul 2024 at 04:32:59
ubuntu-mate ubuntu-mate-version-0d4d7c3b 23 Jul 2024 at 05:27:54
alpine-i3 alpine-i3-version-b2231262 23 Jul 2024 at 04:17:54
ubuntu-i3 ubuntu-i3-version-e2f87cab 23 Jul 2024 at 04:40:12
alpine-openbox alpine-openbox-version-26bb4a8f 23 Jul 2024 at 03:57:33
ubuntu-openbox ubuntu-openbox-version-ee7d1df1 23 Jul 2024 at 04:17:37
alpine-icewm alpine-icewm-version-02fb0c34 23 Jul 2024 at 03:58:58
ubuntu-icewm ubuntu-icewm-version-a328543b 23 Jul 2024 at 04:45:29

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-678b95ed
    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-678b95ed