How to launch Webtop GUI by using Docker image on Debian 11.3

To Launch Webtop GUI By Using Docker Image On Debian 11.3

Introduction:

A Webtop is a remote implementation of a desktop operating environment that delivers identical functionality as that of a local desktop but is accessed using a Web browser.A Webtop is a hosted desktop service technology that allows a virtual desktop interface to be hosted, managed, and maintained completely on the service provider’s infrastructure. A Webtop is also known as a virtual desktop or hosted desktop.

Installation Procedure:

Step 1: Check the OS Version by using below command

root@linuxhelp: ~# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 11 (bullseye)
Release:        11
Codename:       bullseye

Step 2: Verify the presence of Docker package by using the below command

root@linuxhelp: ~# apt list --installed | grep docker
WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
docker-ce-cli/bullseye,now 5:20.10.17~3-0~debian-bullseye amd64 [installed]
docker-ce-rootless-extras/bullseye,now 5:20.10.17~3-0~debian-bullseye amd64 [installed,automatic]
docker-ce/bullseye,now 5:20.10.17~3-0~debian-bullseye amd64 [installed]
docker-scan-plugin/bullseye,now 0.17.0~debian-bullseye amd64 [installed,automatic]

Step 3: Pulling the “webtop” from Docker HUB by using the below command

root@linuxhelp: ~# docker pull linuxserver/webtop
Using default tag: latest
latest: Pulling from linuxserver/webtop
79467b56a179: Pull complete
10c7a7465289: Pull complete
3e82ea42c4de: Pull complete
5fedfe8fa907: Pull complete
e5ea5a76621e: Pull complete
6680b4d27bd0: Pull complete
589db2a20dcc: Pull complete
3dc1ecfa3312: Pull complete
1b88b176599d: Pull complete
110e61b2cc23: Pull complete
cd4bed3f0261: Pull complete
c8790188a24a: Pull complete
1b11bd2dd1e4: Pull complete
Digest: sha256:70f0f01272cda74fa0ae051a206f14b90dec19b365ba8572e9079a42eeb5b12d

Step 4: Check the Docker container process by using the below command

root@linuxhelp: ~# docker ps
CONTAINER ID   IMAGE     COMMAND   CREATED   STATUS    PORTS     NAMES

Step 5: Run the webtop container in depreciated mode with port 3000 mapping with host system by using the below command

root@linuxhelp: ~# docker run -dp 3000:3000 linuxserver/webtop
0321b768bfb6ccbf2bf7d34c03a3ed3085425ec1acaa1dd07fce8b5101389eca

Step 6: Go to the browser browse the localhost and port number as shown in the below image

Conclusion:

We have reached the end of this article. In this guide, we have walked you through the steps required to launch webtop GUI by Using docker Image on Debian 11.3. Your feedback is much welcome.

FAQ
Q
How to pull images from Docker Hub?
A
Pull images from Docker Hub using the command "docker pull "
Q
How to list Docker Processes?
A
By using the command list the docker process.
Q
How to list Docker images?
A
The list for docker images using commands.
Q
What is the default port of the Webtop?
A
The default port of the webtop is 3000.
Q
What Does Webtop Mean?
A
A webtop is a remote implementation of a desktop operating environment that provides similar functionality as that of a local desktop but is accessed using a Web browser.