Hostwinds Tutorials

Search results for:


Table of Contents


How to install

Installing Docker (Fedora)

Tags: Docker 

How to install

One practical method to create a modular setup will allow you to more securely install, manage, and update applications and web services using Docker. Docker is an open-source application that creates the aforementioned applications and services in a self-contained environment in a way that is similar to virtual machines but without virtualization.

In this guide, we will walk you through how to install Docker on Fedora.

How to install

Install DNF plugins-core if it is not already installed. This would allow you to install applications using the DNF repositories.

sudo dnf -y install DNF-plugins-core

Step One – Add the stable repositories using the following command

sudo DNF config-manager \
--add-repo \
https://download.docker.com/linux/fedora/docker-ce.repo

Step Two – Install the latest version of docker.

sudo dnf install docker-ce docker-ce-cli containerd.io

Written by Sean Gaddis  /  June 30, 2020