El primer artículo de la serie de artículos sobre Docker (enlace roto) fue, el de la Instalación de Docker en Debian Jessie, ahora explicaré el proceso de instalación de Docer CE para Debian Stretch. La guía en inglés de instalación de docker para Debian la pueden encontrar en el siguiente enlace.
El procedimiento es el siguiente:
- Instalación de paquetes necesarios para soporte de https en
apt-get:
#apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common
- Agregar llave
gpgoficial de Docker:
# curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - OK
Si devuelve "OK" se bajo la llave y la agregó sin problemas.
- Verificar la llave:
# apt-key fingerprint 0EBFCD88 pub rsa4096 2017-02-22 [SCEA] 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 uid Docker Release (CE deb) <docker@docker.com> sub rsa4096 2017-02-22 [S]
- Se agrega el repositorio Estable para la versión de Debian que se tiene en el equipo:
add-apt-repository \ > "deb [arch=amd64] https://download.docker.com/linux/debian \ > $(lsb_release -cs) \ > stable"
- Se actualiza la lista de paquetes:
#apt-get update
- Se instala
docker-ce:
# apt-get install docker-ce
- Se verifica que
docker-cese instaló correctamente:
# docker run hello-world Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world b04784fba78d: Pull complete Digest: sha256:f3b3b28a45160805bb16542c9531888519430e9e6d6ffc09d72261b0d26ff74f 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. 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/
- Instalar docker-compose:
#apt-get install docker-compose
Manejar docker como un usuario normal:
- Crear el grupo docker:
$sudo groupadd docker
- Agregar el usuario al grupo docker:
$sudo usermod -aG docker $USER
- Verificar que se puede usar docker desde el usuario:
$ docker run hello-world 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. 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/
Configurar Docker para que inicie en el arranque del equipo:
- Habilitar Docker:
$ sudo systemctl enable docker Synchronizing state of docker.service with SysV service script with /lib/systemd/systemd-sysv-install. Executing: /lib/systemd/systemd-sysv-install enable docker
Si requieren detalles de configuración lo pueden ver en la documentación de docker.
Para terminar se prueba el arranque de cloud9 ya explicado en un artículo anterior.
$docker run -it -d -p 9080:80 -v /home/ernesto/worksplace/:/workspace/ kdelfour/cloud9-docker 99cfe3af5bf4480ac456ec43916612317a49da111ab27e32a361639984eb2128
La siguiente captura de pantalla muestra cloud9 en funcionamiento:
En el diectorio worksplace se guarda los proyectos que se editan desde cloud9.
$ tree worksplace worksplace ├── hola.py ├── New Folder │ ├── mvc1.py │ ├── New Folder │ └── usuario.py └── trabajo.txt 2 directories, 4 files
¡Haz tu donativo! Si te gustó el artículo puedes realizar un donativo con Bitcoin (BTC) usando la billetera digital de tu preferencia a la siguiente dirección: 17MtNybhdkA9GV3UNS6BTwPcuhjXoPrSzV
O Escaneando el código QR desde la billetera:
