1. samm: värskendage kogu tarkvara
2. samm: Dockeri installimine
3. samm: looge kasutaja
4. toiming: testige dokkerit
Docker on rakendus, mis võimaldab juurutada programme, mida käitatakse konteineritena. See oli kirjutatud populaarses Go programmeerimiskeeles. See õpetus selgitab, kuidas installida Dockeri Ubuntu 14.04.
1. samm: värskendage kogu tarkvara
Kõigepealt veenduge, et kasutame puhast süsteemi. Käivitage apt updater.
apt-get update
2. samm: Dockeri installimine
Installige oma süsteemi Docker. See lisab vajalikud hoidlad ja installib tarkvara.
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
3. samm: looge kasutaja
Kui otsustate Dockerit juurkasutajana mitte käivitada, peate looma mitte-juurkasutaja.
adduser user
usermod -aG docker user
Taaskäivitage Dockeri teenus.
service docker.io restart
4. toiming: testige dokkerit
Käivitage Dockeri hello-world
konteiner, et testida, kas installimine on edukalt lõpule viidud.
docker run hello-world
Näete järgmist väljundit.
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/
Lõpuks lubage Dockeril käitada, kui teie süsteem käivitub.
update-rc.d docker.io defaults
Palju õnne! Olete Dockeri edukalt installinud. Lisateavet leiate sellest juhendist, kus selgitan, kuidas Dockeri konteinereid luua ja kasutada.