Article
Install Docker in Fedora Linux
Jan 10, 2023
Vineel Sai
![]()
Docker is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. With Docker, you can manage your infrastructure in the same ways you manage your applications. In the following article, you will know how to install docker in Fedora
Prerequisites
Dependencies
- Update the system.
bashsudo dnf update
- Install required dependencies
bashsudo dnf -y install dnf-plugins-core
Setup Docker Repository
- Add docker download repository to your system
bashsudo dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
Install Docker
- Install docker
bashsudo dnf install docker-ce docker-ce-cli containerd.io docker-compose-plugin
Post Install
- Add a docker to the user group to use the docker command without sudo
bashsudo usermod -aG docker $USER
Other Operating Systems
-
If you want to install Docker in other linux distributions check out the following links