Docker Quick Installation GuideΒΆ
This quick installation guides assumes you are running a current Fedora workstation, and you have no special requirements or ideas or other such adventures in mind.
Install, configure and run Docker:
Install the docker package:
# dnf -y install docker
Add a docker group:
# groupadd -r docker
Add your user account to the docker group, for example
jdoe
:# gpasswd -a jdoe docker
Start the docker service and configure it to be started when the system reboots:
# systemctl start docker.service # systemctl enable docker.service
Verify Docker works, and pull an image if you feel so inclined:
# docker ps -a # docker images -a # docker pull centos:centos7
Log out the
jdoe
user account completely to let the new group membership take effect.