Johdanto
Docker on sovellus, joka mahdollistaa ohjelmistojen käyttöönoton virtuaalisäiliöissä. Se on kirjoitettu Go-ohjelmointikielellä. Tässä opetusohjelmassa opit asentamaan Docker CE:n Debian 9:ään.
Docker CE on "Community Edition", joka sopii kehittäjille ja pienille ryhmille.
Luo uusi Vultr VPS
1 Gt RAM-muistia on vähimmäisvaatimus, mutta suosittelen käyttämään vähintään 2 Gt RAM-muistia.
Asennus ja asennus
Muodosta yhteys palvelimeesi SSH:n avulla Macin terminaalin tai Windowsissa PuTTY:n kautta.
ssh [email protected]
Korvaa " 203.1.113.1
" palvelimesi IP-osoitteella.
Sinua pyydetään kirjoittamaan " Yes
" tai " No
" lisätäksesi palvelimen RSA-sormenjälki tunnettujen isäntien luetteloon. Kirjoita " Yes
" ja paina " Enter
".
Nyt olet yhteydessä nimellä root
, joten sinun ei tarvitse käyttää sudo
. Jos muodostat yhteyden käyttäjänä, sinun on sudo
suoritettava useimmat toiminnot.
Päivitä uudella koneella pääkäyttäjänä apt
.
apt-get update
Asenna paketit, jotta apt voi käyttää arkistoa HTTPS
.
apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common -y
Lisää Dockerin virallinen GPG-avain.
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add -
Varmista, että avaimen sormenjälki on yhtä suuri kuin: 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
.
apt-key fingerprint 0EBFCD88
Käytä seuraavaa komentoa vakaan arkiston määrittämiseen.
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") $(lsb_release -cs) stable"
Päivitä apt
uudelleen.
apt-get update
Asenna Docker.
apt-get install docker-ce -y
Luo käyttäjä
Jos et halua käyttää Dockeria pääkäyttäjänä, luo ei-root-käyttäjä.
adduser foo
Lisää sitten tämä käyttäjä Docker-ryhmään.
usermod -aG docker foo
Käynnistä nyt Docker-palvelu uudelleen.
service docker restart
Varmista, että Docker CE on asennettu oikein suorittamalla hello-world
kuva.
docker run hello-world
Tämä komento lataa testikuvan ja ajaa sen säilössä. Kun säilö suoritetaan, se tulostaa tämänkaltaisen viestin ja poistuu.
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/