Installing Docker on Ubuntu Eoan 19.10

Víctor | melea
3 min readFeb 21, 2020
https://docs.docker.com/

Hello!

I am migrating to Ubuntu Eoan 19.10 and when I wanted to install docker following the instructions of the official Docker site I found that I could not do it, thanks to containerd.io, in the end I installed it in a satisfactory way.

This guide works for Ubuntu 18.04 too.

Uninstall old versions

sudo apt-get remove docker docker-engine docker.io containerd runc

Install using the repository

Before you install Docker Engine — Community for the first time on a new host machine, you need to set up the Docker repository. Afterward, you can install and update Docker from the repository.

Set up the repository

#Update the apt package index:$ sudo apt-get update#Install packages to allow apt to use a repository over HTTPS:$ sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common#Add Docker’s official GPG key:$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

--

--