Install Docker¶
Step 1: Install Docker 17.03+¶
Add the docker ce repositories. Understanding DNF) on Fedora.
Note: You can also use podman
and buildah
instead of Docker
. For example if you want to run the training on a Ubuntu machine.
sudo dnf -y install dnf-plugins-core
sudo dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
Step 2: Install docker-ce¶
sudo dnf -y install docker-ce docker-ce-cli
sudo systemctl start docker
sudo systemctl enable docker