Docker Toolbox

  • Beitrags-Autor:
  • Beitrags-Kategorie:Internet

Die Docker Toolbox bringt alles mit, was man für einen ersten Einstieg ins Thema benötigt. Die Installation als VirtualBox-VM begrenzt das Lernen auf eine definierte Umgebung. Der Artikel Introducing Docker Toolbox: the Fastest Way to Get Started With Docker stellt die Toolbox vor und gibt weitere hilfreiche Hinweise.

Services in der Docker Toolbox benötigen eine Weiterleitung der Ports, um genutzt werden zu können.

Siehe auch: Microcontainers — Tiny, Portable Docker Containers

Installation Docker auf Ubuntu 20.04

# apt install docker.io
 
Prüfe Linux-Kernel...
Der laufende Kernel ist aktuell.
Der Prozessor Mikrocode ist aktuell.
Es müssen keine Dienste neugestartet werden.
Es müssen keine Container neu gestartet werden.
Es gibt keine Nutzer-Sitzungen mit veralteten Prozessen.
No VM guests are running outdated hypervisor (qemu) binaries on this host.
 
# systemctl enable --now docker
# docker --Version
 
Docker version 24.0.7, build 24.0.7-0ubuntu4.1
 
# adduser xxx
# usermod -aG docker xxx
# su - xxx
 
$ docker run hello-world
 
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
c1ec31eb5944: Pull complete
Digest: sha256:80973c8f129f00d54604d2c90732e8e320e5038
Status: Downloaded newer image for hello-world:latest
 
Hello from Docker!
This message shows that your installation appears to be working correctly.
 
To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.
 
To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash
 
Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/
 
For more examples and ideas, visit:
 https://docs.docker.com/get-started/
 
$ docker run -it ubuntu bash

siehe auch https://linuxconfig.org oder https://docs.docker.com