Ievads
Docker ir lietojumprogramma, kas ļauj izvietot programmatūru virtuālos konteineros. Tas tika uzrakstīts Go programmēšanas valodā. Šajā apmācībā jūs uzzināsit, kā instalēt Docker CE uz Debian 9.
Docker CE ir "Community Edition", kas ir piemērots izstrādātājiem un mazām komandām.
Izveidojiet jaunu Vultr VPS
1 GB RAM ir minimālā prasība, lai gan es iesaku izmantot vismaz 2 GB RAM.
Uzstādīšana un uzstādīšana
Izveidojiet savienojumu ar serveri, izmantojot SSH, izmantojot termināli operētājsistēmā Mac vai PuTTY operētājsistēmā Windows.
ssh [email protected]
Aizstāt " 203.1.113.1
" ar sava servera IP.
Jums tiks piedāvāts ievadīt " Yes
" vai " No
", lai pievienotu servera RSA pirkstu nospiedumu zināmo saimniekdatoru sarakstam. Ierakstiet " Yes
" un nospiediet " Enter
".
Tagad esat izveidojis savienojumu kā root
, tāpēc jums nav jāizmanto sudo
. Ja izveidojat savienojumu kā lietotājs, jums būs sudo
jāveic lielākā daļa darbību.
Jaunā datorā kā root atjauniniet apt
.
apt-get update
Instalējiet pakotnes, lai ļautu apt izmantot repozitoriju, izmantojot HTTPS
.
apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common -y
Pievienojiet Docker oficiālo GPG atslēgu.
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add -
Pārbaudiet, vai atslēgas pirksta nospiedums ir vienāds ar: 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
.
apt-key fingerprint 0EBFCD88
Izmantojiet šo komandu, lai iestatītu stabilu repozitoriju.
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") $(lsb_release -cs) stable"
Atjauniniet apt
vēlreiz.
apt-get update
Instalējiet Docker.
apt-get install docker-ce -y
Izveidojiet lietotāju
Ja nevēlaties palaist Docker kā root lietotāju, izveidojiet lietotāju, kas nav saknes lietotājs.
adduser foo
Pēc tam pievienojiet šo lietotāju grupai Docker.
usermod -aG docker foo
Tagad restartējiet pakalpojumu Docker.
service docker restart
Pārbaudiet, vai Docker CE ir pareizi instalēts, palaižot hello-world
attēlu.
docker run hello-world
Šī komanda lejupielādē testa attēlu un palaiž to konteinerā. Kad konteiners palaižas, tas izdrukā šādu ziņojumu un iziet.
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/