Capítulo 1 - Instalación

En este capítulo veremos los pasos requeridos para tener una instalación de docker habilitada.

Prerequisitos

  • Un sistema operativo soportado por Docker. El presente curso ha sido preparado usando Ubuntu 18.04 LTS

Instalación

Para iniciar el procedimiento de instalación ejecutamos las siguientes instrucciones en nuestra línea de comandos favorita:

sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common

Ahora importamos los paquetes oficiales de docker:

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

Finalmente, instalamos docker

sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io

Verificación

Ahora verificaremos la instalación de Docker. Primero verificaremos la versión instalada:

docker --version

No es recomendable ejecutar los comandos de docker como superusuario. Para poder ejecutar docker como usuario normal se debe agregar al usuario deseado al grupo docker.  Para poder agregar un usuario usar la siguiente instrucción

 sudo gpasswd -a <usuario> docker

Una vez verificado que se ha instalado docker,  podemos probar la ejecución de la imagen hello-world:

docker run hello-world
$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
1b930d010525: Pull complete 
Digest: sha256:0e11c388b664df8a27a901dce21eb89f11d8292f7fca1b3e3c4321bf7897bffe
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/


Dificultad: