Sissejuhatus
Docker on rakendus, mis võimaldab juurutada tarkvara virtuaalsetes konteinerites. See oli kirjutatud Go programmeerimiskeeles. Sellest õpetusest saate teada, kuidas installida Docker CE Debian 9.
Docker CE on "Community Edition", mis sobib arendajatele ja väikestele meeskondadele.
Looge uus Vultr VPS
1 GB muutmälu on miinimumnõue, kuigi soovitan kasutada vähemalt 2 GB muutmälu.
Seadistamine ja installimine
Ühendage oma serveriga SSH-ga Maci terminali või Windowsis PuTTY kaudu.
ssh [email protected]
Asendage " 203.1.113.1
" oma serveri IP-ga.
Serveri RSA-sõrmejälje lisamiseks oma tuntud hostide loendisse palutakse teil tippida " Yes
" või " No
". Tippige " Yes
" ja vajutage " Enter
".
Nüüd olete ühendatud nimega root
, nii et te ei pea kasutama sudo
. Kui loote ühenduse kasutajana, peate sudo
tegema enamiku toimingutest.
Värskendage värskes masinas root kasutajana apt
.
apt-get update
Installige paketid, mis võimaldavad aptil kasutada hoidlat HTTPS
.
apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common -y
Lisage Dockeri ametlik GPG-võti.
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add -
Veenduge, et võtme sõrmejälg on võrdne: 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
.
apt-key fingerprint 0EBFCD88
Stabiilse hoidla seadistamiseks kasutage järgmist käsku.
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") $(lsb_release -cs) stable"
Uuenda apt
uuesti.
apt-get update
Installige Docker.
apt-get install docker-ce -y
Looge kasutaja
Kui te ei soovi Dockerit juurkasutajana käivitada, looge mitte-juurkasutaja.
adduser foo
Seejärel lisage see kasutaja Dockeri rühma.
usermod -aG docker foo
Nüüd taaskäivitage Dockeri teenus.
service docker restart
Kontrollige, kas Docker CE on õigesti installitud, käivitades hello-world
kujutise.
docker run hello-world
See käsk laadib alla testpildi ja käivitab selle konteineris. Kui konteiner töötab, prindib see sellise sõnumi ja väljub.
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/