Docker Logo

How to Install Docker and Docker Desktop on Fedora

Docker is a popular containerization platform that allows developers to package applications and their dependencies into lightweight, portable containers. In this guide, we’ll walk through the installation of both Docker and Docker Desktop on Fedora. Prerequisites Fedora 35 or later sudo privileges Internet connectivity Step 1: Update Your System Before installing Docker, ensure your system is up to date: sudo dnf update -y Step 2: Add the Docker Repository Fedora does not include Docker in its default repositories, so you need to add the official Docker repository: ...

February 7, 2025 · 3 min · 458 words · fernand3z

Multi-Platform Development Tools Installer

Setting up a development environment across multiple operating systems can be tedious. To simplify this, the Multi-Platform Development Tools Installer helps developers install essential tools in a structured and customizable way on Linux, macOS, and Windows. Features Terminal Enhancements zsh oh-my-zsh (with syntax highlighting & autosuggestions) Starship Prompt (Nerd Font preset) fzf (fuzzy finder) zoxide (smart directory jumping, initialized with --cmd cd) Development Environment Tools nvm (Node.js version manager) & Node.js Python (with pip) Docker Git Visual Studio Code PyCharm Community Edition Customizable Installation Choose to install all tools or select specific categories: ...

February 7, 2025 · 2 min · 417 words · fernand3z

Docker Containers: A Practical Guide

What are Docker Containers? Docker containers are lightweight, standalone packages that include everything needed to run a piece of software. Basic Docker Commands Here are some essential Docker commands you’ll use daily: # Pull an image docker pull nginx # Run a container docker run -d -p 80:80 nginx # List running containers docker ps # Stop a container docker stop container_id Creating a Dockerfile Here’s a simple Dockerfile for a Node.js application: ...

January 29, 2025 · 1 min · 124 words · Me