I seem to be making use of docker
a lot more these days. It seems to have become such a fundamental core of most development tasks. I have also been playing around a lot more with Fedora Linux Distro. I just wanted to quickly document the steps I took to install docker on my Fedora desktop.
Install Docker
Open a terminal window and Install the docker image
Shell
1
sudo dnf install docker
Start the docker
daemon
Shell
xxxxxxxxxx
1
1
sudo systemctl start docker
To ensure docker
starts when rebooting
Shell
xxxxxxxxxx
1
1
sudo systemctl enable docker
We also want to enable that we can run docker without having to use sudo
Shell
xxxxxxxxxx
1
1
sudo groupadd docker && sudo gpasswd -a ${USER} docker && sudo systemctl restart docker newgrp docker
Latest posts by Gary Woodfine (see all)
- What is this Directory.Packages.props file all about? - January 25, 2024
- How to add Tailwind CSS to Blazor website - November 20, 2023
- How to deploy a Blazor site to Netlify - November 17, 2023