Introducció
Docker és una aplicació que permet el desplegament de programari dins de contenidors virtuals. Va ser escrit en el llenguatge de programació Go. En aquest tutorial, aprendràs a instal·lar Docker CE a Debian 9.
Docker CE és la "Community Edition", que és adequada per a desenvolupadors i petits equips.
Creeu un nou Vultr VPS
1 GB de RAM és el requisit mínim, tot i que recomano utilitzar almenys 2 GB de RAM.
Configuració i instal·lació
Connecteu-vos al vostre servidor mitjançant SSH mitjançant el Terminal a Mac o PuTTY a Windows.
ssh [email protected]
Substituïu " 203.1.113.1
" per la IP del vostre servidor.
Se us demanarà que escriviu " Yes
" o " No
" per afegir l'empremta digital RSA del servidor a la vostra llista d'amfitrions coneguts. Escriviu " Yes
" i premeu " Enter
".
Ara esteu connectat com a root
, de manera que no cal que utilitzeu sudo
. Si us connecteu com a usuari, haureu sudo
de realitzar la majoria de les accions.
En una màquina nova, com a root, actualitzeu apt
.
apt-get update
Instal·leu paquets per permetre que apt utilitzi un repositori a HTTPS
.
apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common -y
Afegeix la clau GPG oficial de Docker.
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add -
Comproveu que l'empremta digital de la clau sigui igual a: 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
.
apt-key fingerprint 0EBFCD88
Utilitzeu l'ordre següent per configurar el repositori estable.
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") $(lsb_release -cs) stable"
Actualitzeu de apt
nou.
apt-get update
Instal·leu Docker.
apt-get install docker-ce -y
Crear un usuari
Si no voleu executar Docker com a usuari root, creeu un usuari que no sigui root.
adduser foo
A continuació, afegiu aquest usuari al grup Docker.
usermod -aG docker foo
Ara reinicieu el servei Docker.
service docker restart
Comproveu que Docker CE estigui instal·lat correctament executant la hello-world
imatge.
docker run hello-world
Aquesta ordre baixa una imatge de prova i l'executa en un contenidor. Quan el contenidor s'executa, imprimeix un missatge com aquest i surt.
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
9a0669468bf7: Pull complete
Digest: sha256:cf2f6d004a59f7c18ec89df311cf0f6a1c714ec924eebcbfdd759a669b90e711
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/