Vaihe 1: Luo Node-sovellus
Vaihe 2: Luo Docker-tiedosto
Vaihe 3: Luo kuva
Vaihe 4: Ota käyttöön ja testaa sovellus
Tämä artikkeli näyttää, kuinka Node-sovellus otetaan käyttöön Docker-säilön sisällä.
Huomautus: Tässä opetusohjelmassa oletetaan, että Docker on asennettu ja valmis käytettäväksi.
Vaihe 1: Luo Node-sovellus
Luo hakemisto nimeltä src
. Käytämme tätä hakemistoa. Luo tiedosto nimeltä, src/package.json
joka sisältää seuraavat tiedot:
{
"name": "hello_world",
"private": true,
"version": "0.0.1",
"description": "Hello world Example",
"author": "",
"dependencies": {
"express": "3.2.4"
}
}
Luo nyt src/index.js
seuraava, joka sisältää:
var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.send('Hello from Docker\n');
});
app.listen(8080);
console.log('Running on http://localhost:8080');
Huomaa, että voit vaihtaa portin 8080
mihin tahansa, mutta tässä esimerkissä paljastamme tämän portin käytettäväksi sovelluksessamme. Kun olet luonut nämä kaksi tiedostoa, voit siirtyä seuraavaan vaiheeseen.
Vaihe 2: Luo Docker-tiedosto
"Dockerfile" antaa sinun rakentaa ja ottaa käyttöön Docker-kuvia siinä antamiesi ohjeiden perusteella. Luo tiedosto nimeltä Dockerfile
ja täytä se seuraavalla sisällöllä:
FROM centos:latest
MAINTAINER Name Here <username@localhost>
RUN rpm -Uvh http://mirror.pnl.gov/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
RUN yum install nodejs npm -y
COPY ./src /opt/src
RUN cd /opt/src; npm install
EXPOSE 8080
CMD ["node", "/opt/src/index.js"]
Selitys:
FROM centos:latest
This will use an image called centos
. If there is no image available on your host, Docker will pull one from its repository.
MAINTAINER Name Here <username@localhost>
This instruction allows you to set the author for the image being created.
RUN rpm -Uvh http://mirror.pnl.gov/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
RUN yum install nodejs npm -y
…
RUN cd /opt/src; npm install
"RUN" will execute the shell commands given. In this example, it will download the epel-release rpm and install it, and install nodejs and npm from its repository. After the next operation, it will cd into the project directory and run npm install
to install dependencies for your application.
COPY ./src /opt/src
Copy the directory (and files) from the host into the container.
EXPOSE 8080
Open port 8080 for the outside world to use.
CMD ["node", "/opt/src/index.js"]
CMD
will provide default execution for the container.
Kun olet luonut tiedoston täsmälleen yllä olevan kuvan mukaisesti, voit siirtyä seuraavaan vaiheeseen.
Vaihe 3: Luo kuva
Luo kuvasi suorittamalla seuraava komento:
docker build -t name/application .
Tämä luo kuvan, jonka arkiston nimi on name/application
. Jos virheitä ei ole, voit siirtyä seuraavaan vaiheeseen.
Vaihe 4: Ota käyttöön ja testaa sovellus
Nyt kun kaikki on asennettu, voit ajaa kuvan suorittamalla seuraavan:
docker run -p 49160:8080 -d name/application
Testaa sovelluksesi suorittamalla seuraava komento isännästä:
curl http://172.17.42.1:49160/
Jos näet, Hello from Docker
olet ottanut Docker-kuvasi käyttöön onnistuneesti. Jos haluat testata tätä selaimellasi, käy http://[SERVER_IP]:49160
selaimessasi (korvaa IP-osoite vastaavasti) ja näet saman viestin.