Krok 1: Vytvorte si aplikáciu Node
Krok 2: Vytvorte Dockerfile
Krok 3: Vytvorte obrázok
Krok 4: Nasaďte a otestujte aplikáciu
Tento článok vám ukáže, ako nasadiť aplikáciu Node v kontajneri Docker.
Poznámka: Tento tutoriál predpokladá, že máte nainštalovaný Docker a pripravený na použitie.
Krok 1: Vytvorte si aplikáciu Node
Vytvorte adresár s názvom src
. Budeme používať tento adresár. Vytvorte súbor s názvom, ktorý src/package.json
obsahuje nasledovné:
{
"name": "hello_world",
"private": true,
"version": "0.0.1",
"description": "Hello world Example",
"author": "",
"dependencies": {
"express": "3.2.4"
}
}
Teraz vytvorte súbor src/index.js
obsahujúci nasledovné:
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');
Prosím, uvedomte si, že port môžete zmeniť 8080
na čokoľvek chcete, ale v tomto príklade tento port vystavíme na použitie pre našu aplikáciu. Po vytvorení týchto dvoch súborov môžete prejsť na ďalší krok.
Krok 2: Vytvorte Dockerfile
„Dockerfile“ vám umožňuje vytvárať a nasadzovať obrazy Docker na základe súboru pokynov, ktoré ste v ňom poskytli. Vytvorte súbor s názvom Dockerfile
a naplňte ho nasledujúcim obsahom:
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"]
vysvetlenie:
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.
Keď vytvoríte súbor presne tak, ako je zobrazený vyššie, môžete prejsť na ďalší krok.
Krok 3: Vytvorte obrázok
Ak chcete vytvoriť svoj obrázok, spustite nasledujúci príkaz:
docker build -t name/application .
Tým sa vytvorí obrázok s názvom úložiska name/application
. Ak nie sú žiadne chyby, môžete prejsť na ďalší krok.
Krok 4: Nasaďte a otestujte aplikáciu
Teraz, keď je všetko nastavené, môžete spustiť svoj obrázok spustením nasledujúceho:
docker run -p 49160:8080 -d name/application
Ak chcete otestovať svoju aplikáciu, spustite nasledujúci príkaz z hostiteľa:
curl http://172.17.42.1:49160/
Ak vidíte Hello from Docker
, úspešne ste nasadili svoj obrázok Docker. Ak to chcete otestovať vo svojom prehliadači, navštívte stránku http://[SERVER_IP]:49160
z prehliadača (podľa toho nahraďte IP adresu) a zobrazí sa rovnaká správa.