• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to launch Webtop GUI by using Docker image on Rocky Linux 8.6

  • 00:42 cat /etc/os-release
  • 01:37 systemctl status docker
  • 02:10 docker pull linuxserver/webtop
  • 03:19 docker images
  • 03:43 docker run -dp 3000:3000 linuxserver/webtop
7534

To launch Webtop GUI by using Docker Image on Rocky Linux 8.6

Introduction:

Docker containerization enables developers to package applications into containers. This technology offers full desktop environments in officially supported flavors through Alpine, Ubuntu, Fedora, and Arch-based containers.

Installation Procedure:

Step 1: Check the OS version by using the below command

[root@linuxhelp ~]# cat /etc/os-release 
NAME="Rocky Linux"
VERSION="8.6 (Green Obsidian)"
ID="rocky"
ID_LIKE="rhel centos fedora"
VERSION_ID="8.6"
PLATFORM_ID="platform:el8"
PRETTY_NAME="Rocky Linux 8.6 (Green Obsidian)"
ANSI_COLOR="0;32"
CPE_NAME="cpe:/o:rocky:rocky:8:GA"
HOME_URL="https://rockylinux.org/"
BUG_REPORT_URL="https://bugs.rockylinux.org/"
ROCKY_SUPPORT_PRODUCT="Rocky Linux"
ROCKY_SUPPORT_PRODUCT_VERSION="8"
REDHAT_SUPPORT_PRODUCT="Rocky Linux"
REDHAT_SUPPORT_PRODUCT_VERSION="8"

Step 2: Check the Docker status by using the below command

[root@linuxhelp ~]# systemctl status docker
● docker.service - Docker Application Container Engine
   Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled; vendor preset: disabled)
   Active: active (running) since Fri 2022-07-22 02:35:59 EDT; 2 weeks 2 days ago
     Docs: https://docs.docker.com
 Main PID: 43049 (dockerd)
    Tasks: 9
   Memory: 47.0M
   CGroup: /system.slice/docker.service
           └─43049 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock

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
b3d72b7a8ae2: Pull complete 
010a58c0c63e: Pull complete 
4de88d20b662: Pull complete 
acee81eb25d2: Pull complete 
90e0f6cfaaf0: Pull complete 
26aabecec6f9: Pull complete 
6fd00b1d893c: Pull complete 
0cb6ee14c821: Pull complete 
1e2671cdcd28: Pull complete 
b042894dcb07: Pull complete 
aba11ddc9a56: Pull complete 
96abeb6229d1: Pull complete 
f56bae12be27: Pull complete 
Digest: sha256:056f66a8cc4dfd15fd6d6999f3a8a80756fd41b8e6d19c8cf1b23191de961123
Status: Downloaded newer image for linuxserver/webtop:latest
docker.io/linuxserver/webtop:latest

Step 4: Check the Docker image by using the below command

[root@linuxhelp ~]# docker images
REPOSITORY           TAG       IMAGE ID       CREATED         SIZE
linuxserver/webtop   latest    0f4c0d665437   9 hours ago     1.19GB
hello-world          latest    feb5d9fea6a5   10 months ago   13.3kB

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
5aeedda90661a73982eea4220012084554e74316ff69bc715fb7aec4de2a9e61

Step 6: This is the Home page of Webtop GUI snap 1

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 Rocky Linux 8.6. Your feedback is much welcome.

Tags:
michael
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

How to pull images from Docker Hub?

A

Pull images from Docker Hub using the command "docker pull "

Q

What are the officially supported flavors accessible via any modern web browser by Webtop?

A

The officially supported flavors accessible via any modern web browser by Webtops are Alpine, Ubuntu, Fedora, and Arch-based container.

Q

How to view logs of the Containers?

A

To view logs of the Containers with the command "docker logs -f "

Q

How to reset the Webtop password?

A

To reset the Webtop password use the command "docker exec -it webtop passwd abc"

Q

What is the default port of the Webtop?

A

The default port of the webtop is 3000.

Related Tutorials in How to launch Webtop GUI by using Docker image on Rocky Linux 8.6

Related Tutorials in How to launch Webtop GUI by using Docker image on Rocky Linux 8.6

How to install Xrdp Server (Remote Desktop) on Oracle Linux 8.5
How to install Xrdp Server (Remote Desktop) on Oracle Linux 8.5
Oct 17, 2022
How to install and update OpenSSL on Debian 11.3
How to install and update OpenSSL on Debian 11.3
Oct 21, 2022
How to Install and Configure Mega in Linux
How to Install and Configure Mega in Linux
Jul 19, 2016
How to use Aureport command on Linux
How to use Aureport command on Linux
Nov 28, 2017
How to install Development tools on Linux
How to install Development tools on Linux
Jun 12, 2018
How to Install mod_ssl and SSL certificate on Oracle Linux
How to Install mod_ssl and SSL certificate on Oracle Linux
Dec 30, 2021
How to install Nextcloud on Ubuntu 22.04 version
How to install Nextcloud on Ubuntu 22.04 version
Jun 23, 2023
How to Install Peppermint OS
How to Install Peppermint OS
Nov 28, 2016

Related Forums in How to launch Webtop GUI by using Docker image on Rocky Linux 8.6

Related Forums in How to launch Webtop GUI by using Docker image on Rocky Linux 8.6

Linux
jayce class=
shasum command not found
May 5, 2017
Linux
stephan class=
How to list all samba users
Jan 12, 2018
pv command
muhammad class=
pvcreate command not found error
May 9, 2017
Linux
henry class=
Starting NFS daemon: rpc.nfsd: writing fd to kernel failed: errno 111 (Connection refused)
Apr 25, 2017
ifconfig command
jackbrookes class=
what is the location of the ifconfig program on your machine?
Jan 4, 2018
Linux
baseer class=
single command to apply setfacl for multiple user at a time
Jan 23, 2018
Linux
beulah class=
What does mean by 0 0 value in fstab file
Jan 2, 2018
CentOS
mason class=
Error getting authority: Error initializing authority: Could not connect: No such file or directory (g-io-error-quark, 1)
Nov 20, 2018

Related News in How to launch Webtop GUI by using Docker image on Rocky Linux 8.6

Related News in How to launch Webtop GUI by using Docker image on Rocky Linux 8.6

Anbox, the Android-to-Linux tool the developers have been waiting for
Anbox, the Android-to-Linux tool the developers have been waiting for
Apr 17, 2017
Linus Torvalds stops signing Linux kernel RC tarballs
Linus Torvalds stops signing Linux kernel RC tarballs
May 17, 2017
Capsule8 Launches Linux-Based Container Security Platform
Capsule8 Launches Linux-Based Container Security Platform
Feb 14, 2017
Symantec updates Management console product
Symantec updates Management console product
Nov 22, 2017
Latest Linux driver release feature seven AMD Vega
Latest Linux driver release feature seven AMD Vega
Mar 23, 2017
A Newer and a Faster Window Manager for Tina (Linux Mint 19.2)
A Newer and a Faster Window Manager for Tina (Linux Mint 19.2)
Apr 9, 2019
Microsoft makes its Azure App service now available on Linux Systems
Microsoft makes its Azure App service now available on Linux Systems
Sep 7, 2017
Docker friendly Alpine Linux gets hardened Node.js
Docker friendly Alpine Linux gets hardened Node.js
Apr 19, 2017
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Gibbson ?
How do i run both nginx and apache in same instance on centos

Hi...,

my server is based centos operating system and my webserver is already running on Apache.... i need to run both apache and nginx on same instance ... please help me to implement this concept...

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.