Ubuntu

Ubuntu – Docker CE installieren

Die Installation der Containervirtualisierung Docker gestaltet sich sehr einfach.

Einfach folgende Befehle in der Linux-Shell als root oder mit vorangestelltem „sudo“ eingeben:

apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
apt-get install docker-ce