Pas 1: Actualitzeu tot el vostre programari
Pas 2: instal·lació de Docker
Pas 3: creeu un usuari
Pas 4: prova Docker
Docker és una aplicació que permet desplegar programes que s'executen com a contenidors. Va ser escrit en el popular llenguatge de programació Go. Aquest tutorial explica com instal·lar Docker a Ubuntu 14.04.
Pas 1: Actualitzeu tot el vostre programari
En primer lloc, assegurem-nos que estem utilitzant un sistema net. Executeu l'actualitzador d'apt.
apt-get update
Pas 2: instal·lació de Docker
Instal·leu Docker al vostre sistema. Això afegirà els dipòsits necessaris i instal·larà el programari.
apt-get -y install docker.io
ln -sf /usr/bin/docker.io /usr/local/bin/docker
sed -i '$acomplete -F _docker docker' /etc/bash_completion.d/docker.io
Pas 3: creeu un usuari
Si decidiu no executar Docker com a usuari root, haureu de crear un usuari que no sigui root.
adduser user
usermod -aG docker user
Reinicieu el servei Docker.
service docker.io restart
Pas 4: prova Docker
Executeu el hello-world
contenidor Docker per provar si la instal·lació s'ha completat correctament.
docker run hello-world
Veureu la següent sortida.
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 Hub account:
https://hub.docker.com
For more examples and ideas, visit:
https://docs.docker.com/userguide/
Finalment, habiliteu Docker perquè s'executi quan s'iniciï el vostre sistema.
update-rc.d docker.io defaults
Felicitats! Heu instal·lat Docker correctament. Per a més informació, consulteu aquesta guia on explico com crear i utilitzar contenidors Docker.