[Allgemein] - Docker installieren - Druckversion +- Joopi (https://forum.hermann-splitthoff.de) +-- Forum: Wissenswertes (https://forum.hermann-splitthoff.de/forumdisplay.php?fid=1) +--- Forum: Linux (https://forum.hermann-splitthoff.de/forumdisplay.php?fid=3) +---- Forum: Docker (https://forum.hermann-splitthoff.de/forumdisplay.php?fid=28) +---- Thema: [Allgemein] - Docker installieren (/showthread.php?tid=1373) |
Docker installieren - Joopi - 23-11-2024 Docker über Repository installieren für Focal Auf dieser Webseite habe ich die Installationsanleitung für Docker aus den Repositories für Ubuntu Focal gefunden: Docker installation on Ubuntu Install via repository Und hier kommt die Anleitung als Kopie der Webseite. Docker installation on Ubuntu Install via repository Docker installation process on Ubuntu is practically the same as on Debian. 1. Update the distro and install necessary packages: Code: $ sudo apt update 2. Second step is to add Docker GPG key for Docker Code: $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 3. Verify the key fingerprint: Code: $ sudo apt-key fingerprint 0EBFCD88 4. Add the repository: Code: $ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" 5. Install Docker: Code: $ sudo apt-get update 6. Start and enable the Docker: Code: $ sudo systemctl start docker 7. Test Docker also with the hello container Code: $ sudo docker run hello-world Da Docker das IMG nicht findet, kommt erst eine Fehlermeldung, dann aber, wenn der Download erfolgreich war, die Meldung, dass alles gut ist. Sieht dann in der Konsole so aus: Code: user@user:/$ sudo docker run hello-world Hello from Docker!** ist die richtige Meldung zum IMG. |