Package Management

How to Install Portainer for Docker Management on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Portainer for Docker Management on RHEL 9

Portainer is a lightweight, web-based Docker management UI that makes container management accessible without needing the Docker CLI. It provides a graphical interface for managing containers, images, volumes, networks, Docker Compose stacks, and container registries. Portainer Community Edition (CE) is open-source and supports Docker standalone, Docker Swarm, and Kubernetes environments. It is particularly valuable for […]

Read more
How to Set Up a Private Docker Registry on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Set Up a Private Docker Registry on RHEL 9

A private Docker registry allows organisations to store and distribute container images internally, without relying on Docker Hub or a cloud registry. This is essential for teams working with proprietary application images that cannot be stored in public registries, organisations with strict data sovereignty requirements, and environments with limited internet access. Docker provides an official […]

Read more
How to Manage Docker Images and Containers on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Manage Docker Images and Containers on RHEL 9

Efficient Docker image and container management is fundamental to maintaining a healthy container environment. Docker images accumulate on hosts — old base images, build cache layers, and unused intermediate images can consume tens of gigabytes of disk space if not managed regularly. Understanding the Docker image layer model is key: images consist of read-only layers […]

Read more
How to Install Docker Compose on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Docker Compose on RHEL 9

Docker Compose is a tool for defining and running multi-container Docker applications from a single YAML configuration file (docker-compose.yml or compose.yaml). Instead of manually running multiple docker run commands and configuring networks and volumes by hand, Docker Compose allows you to declare all services (web application, database, cache, message queue) in one file and start […]

Read more
How to Install Docker Engine on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Docker Engine on RHEL 9

Docker Engine is the industry-standard container platform that packages applications and their dependencies into portable, isolated containers. A Docker container bundles the application code, runtime, libraries, and configuration into a single image that runs identically on any Linux host with Docker installed, eliminating the “it works on my machine” problem. RHEL 9 does not include […]

Read more
How to Install .NET 8 SDK and Runtime on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install .NET 8 SDK and Runtime on RHEL 9

.NET is Microsoft’s open-source, cross-platform application framework that runs on Linux, macOS, and Windows. .NET 8 (the current LTS release) includes the ASP.NET Core web framework for building REST APIs and web applications, Entity Framework Core ORM, and a high-performance Kestrel HTTP server. .NET applications are compiled to platform-independent intermediate language (IL) bytecode and run […]

Read more
How to Install Ruby 3.3 with rbenv on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Ruby 3.3 with rbenv on RHEL 9

Ruby is a dynamic, object-oriented programming language best known as the language behind Ruby on Rails, the influential web framework that popularised convention-over-configuration and RESTful web applications. rbenv is the standard Ruby version manager for production servers — it allows installing and switching between multiple Ruby versions per user or per directory, without requiring root […]

Read more
How to Install Rust and Cargo on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Rust and Cargo on RHEL 9

Rust is a systems programming language focused on memory safety, performance, and concurrency. Rust achieves memory safety without a garbage collector through its ownership and borrowing system, which enforces at compile time that there are no dangling pointers, buffer overflows, or data races. This makes Rust suitable for building high-performance systems software where both safety […]

Read more
How to Install Maven and Gradle on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Maven and Gradle on RHEL 9

Maven and Gradle are the two dominant build tools for Java projects. Maven uses an XML-based declarative configuration (pom.xml), follows strict conventions, and dominates in enterprise environments with heavy use of the Maven Central repository for dependency management. Gradle uses a Groovy or Kotlin DSL, is more flexible and faster than Maven (due to incremental […]

Read more
How to Install Java (OpenJDK 21) on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install Java (OpenJDK 21) on RHEL 9

Java is the most widely deployed programming language in enterprise environments, powering banking systems, e-commerce platforms, microservices, Android applications, and big data frameworks like Apache Kafka, Hadoop, and Spark. OpenJDK (Open Java Development Kit) is the open-source reference implementation of the Java SE specification, maintained by Red Hat, IBM, and the Java community. RHEL 9 […]

Read more
CHAT