Instal·lació de Docker a Debian 10
Introducció
Així com els híper-visors ofereixen una capa de virtualització del maquinari, els contenidors presenten una capa de virtualització del sistema operatiu, proporcionant a l’aplicació els recursos que pot necessitar, incloent-hi llibreries, arbres de procés, xarxa, gestió d’usuaris, sistemes de fitxers, CPU, memòria i blocs d’entrada i sortida. Docker és el gestor més popular per la gestió de contenidors.
Veurem, a continuació, com és la seva instal·lació a un servidor Debian 10.
Des-instal·lació de les versions prèvies
Si tenim alguna versió prèvia de Docker instal·lada al sistema, el primer que hem de fer és desinstal·lar-la amb la comanda:
sudo apt-get remove docker docker-engine docker.io containerd runc
Aquesta desinstal·lació preserva les imatges, contenidors, volums i xarxes definides a l’entorn.
Configuració del repositori
Primer de tot, actualitzem l’índex de paquets, i instal·lem els necessaris per accedir al repositori per HTTPS:
sudo apt-get update sudo apt-get install apt-transport-https ca-certificates curl gnupg lsb-release
A continuació, afegim la clau PGP que permet que el nostre sistema confiï en el repositori de Docker:
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
I fem servir la següent comanda per configurar el repositori de la versió estable :
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
Instal·lació
Actualitzem de nou l’índex de paquets i instal·lem Docker amb les comandes :
sudo apt-get update sudo apt-get install docker-ce docker-ce-cli containerd.io
La comanda anterior instal·larà la versió estable més actual. Si necessitem instal·lar una altra versió, podem obtenir un llistat de les versions disponibles al repositori amb la comanda:
apt-cache madison docker-ce
Que ens proporciona un llistat similar a aquest:
docker-ce | 5:20.10.7~3-0~debian-buster | https://download.docker.com/linux/deb ian buster/stable amd64 Packages docker-ce | 5:20.10.6~3-0~debian-buster | https://download.docker.com/linux/debian buster/stable amd64 Packages docker-ce | 5:20.10.5~3-0~debian-buster | https://download.docker.com/linux/debian buster/stable amd64 Packages docker-ce | 5:20.10.4~3-0~debian-buster | https://download.docker.com/linux/debian buster/stable amd64 Packages docker-ce | 5:20.10.3~3-0~debian-buster | https://download.docker.com/linux/debian buster/stable amd64 Packages docker-ce | 5:20.10.2~3-0~debian-buster | https://download.docker.com/linux/debian buster/stable amd64 Packages […No hi posem tot el llistat perquè no cal 😊] docker-ce | 18.06.0~ce~3-0~debian | https://download.docker.com/linux/debian buster/stable amd64 Packages docker-ce | 18.03.1~ce-0~debian | https://download.docker.com/linux/debian buster/stable amd64 Packages docker-ce | 18.03.0~ce-0~debian | https://download.docker.com/linux/debian buster/stable amd64 Packages docker-ce | 17.12.1~ce-0~debian | https://download.docker.com/linux/debian buster/stable amd64 Packages docker-ce | 17.12.0~ce-0~debian | https://download.docker.com/linux/debian buster/stable amd64 Packages
Per instal·lar una versió concreta farem servir la comanda:
sudo apt-get install docker-ce=<NOM_DE_LA_VERSIO> docker-ce-cli=< NOM_DE_LA_VERSIO> containerd.io
Un cop instal·lat Docker, podem comprovar que funciona cridant una imatge de prova:
sudo docker run hello-world
Que produeix una sortida més o menys com aquesta:
Unable to find image 'hello-world:latest' locally latest: Pulling from library/hello-world b8dfde127a29: Pull complete Digest: sha256:9f6ad537c5132bcce57f7a0a20e317228d382c3cd61edae14650eec68b2b345c 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/