Docker - Instalación en Debian y Ubuntu

Como realizar una instalación de Docker en Linux Debian y Ubuntu.




Lo vamos a realiar de dos formas distintas, la que indica la web de Docker y otra akternativa más simple.

A)

Realizaremos básicamente lo que indica la web oficial de Docker https://docs.docker.com/install/linux/docker-ce/debian/. Nota: esta instalación la he realizado con Debian 4.9 y previo su.
 
Instalar los repositorios necesarios.
apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg2 \ software-properties-common
Añadir la clave GPG
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | apt-key add -

Añadir repositorio
add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") \ $(lsb_release -cs) \ stable"

Actualizamos
apt-get update

Por fín, instalar Docker CE (Community Edition)

apt-get install docker-ce

B)

Desde mi punto de vista la forma más sencilla y cómodo, esta con Ubuntu 17.10
Acceder con un navegador a la url https://get.docker.com/, en esta web además de ver los entresijos del script nos instalará la versión más actual.

Busca como instalar Docker en el texto
# This script is meant for quick & easy install via:
#   $ curl -fsSL get.docker.com -o get-docker.sh
#   $ sh get-docker.sh
Elevamos a root (su/sudo) y lanzamos las líneas que nos han indicado. Al finalizar la instalación con el script solicita dar permisos a un usuario para ejecutar docker
sudo usermod -aG docker your-user

Verificar instalación

docker info
.....
docker version
root@debiathan:/home/jmb# docker version
Client:
 Version:       17.12.0-ce
 API version:   1.35
 Go version:    go1.9.2
 Git commit:    c97c6d6
 Built: Wed Dec 27 20:11:19 2017
 OS/Arch:       linux/amd64

Server:
 Engine:
  Version:      17.12.0-ce
  API version:  1.35 (minimum version 1.12)
  Go version:   go1.9.2
  Git commit:   c97c6d6
  Built:        Wed Dec 27 20:09:54 2017
  OS/Arch:      linux/amd64
  Experimental: false

Comprobar

docker run hello-world
 
Este es una imagen que crea un contenedor cuya única función es lanzar el típico Hello World que indica que todo está correcto, aquí muestro la salida del contenedor:
root@debiathan:/home/jmb# docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
ca4f61b1923c: Pull complete
Digest: sha256:083de497cff944f969d8499ab94f07134c50bcf5e6b9559b27182d3fa80ce3f7
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://cloud.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/engine/userguide/


Vamos a comprobar que el contenedor se ha generado con ps -a (porque ya ha finalizado y con un ps solo muestra los contenedores que están corriendo)
root@debiathan:/home/jmb# docker ps -a
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS                      PORTS               NAMES
afa919749338        hello-world         "/hello"            20 seconds ago      Exited (0) 16 seconds ago                       goofy_lovelace


No hay comentarios:

Publicar un comentario