How to build a Nodejs app on docker

29/12/2020
Docker has become a hot topic of conversation nowadays especially among developers. So what is docker? Docker is an opensource platform that rides on the Linux kernel and allows developers to build and deploy their applications in containers. Containers provide an isolated environment for running applications and they come bundled with their own libraries, dependencies and configuration files which are essential for the automatic deployment of applications.

In this guide, we will walk you through how you can build a NodeJS app on docker. You will learn how to build a demo NodeJS application on your server and later push it to Docker hub. In this guide, we are using Ubuntu 18.04 LTS for our testing environment.

So why would anyone want to push their applications on docker? As we saw earlier, Docker ships applications in containers that bundle libraries and dependencies. This constitutes a fully-fledged environment for deploying your applications. Additionally, the constituency of the development environment ensures that the application will work in the same way across many developers and client machines.

Prerequisites for NodeJS Docker Developement

This guide assumes you have a working knowledge of Docker and also some familiarity with the structure of a NodeJS application.

Before we go any further, ensure that the following is installed on your testing environment:

  1. Docker
  2. NodeJS & NPM

Let’s now get our hands dirty.

Step 1: Create a  Node.JS application

First, start off by creating a NodeJS application. We will create a new directory and then navigate inside it as shown.

$ mkdir mynode-app && cd mynode-app

Next use npm, short for NodeJS Package Manager, to initialize the directory.

$ npm init

The command creates a file called package.json . You will be prompted for details of the JSON file such as name, version, description, keywords and the author to mention just a few.

At the very end type yes to confirm the preferred details of the json file.

Next, add the express framework by executing the command:

$   npm install express –-save

You should get an output as shown below

Step 2: Create a  Node.JS application

In this step, we need to create files needed for the NodeJS application. Let’s create 2 sample files as follows:

  1. js
  2. html

For the index.js file, copy and paste the content below:

const express = require(‘express’)
const app = express()
app.get(‘/’, ( req, res ) => {
res.sendFile(`${__dirname}/index.html`)
})
app.listen(3000, () => {
console.log(‘Listening on port 3000!’)
})

The file creates a route for index.html file which is going to listen on port 3000

For the index.html file, paste the following configuration

<html>
<body>
<h1>Hello there! Welcome to my NodeJS application</h1>
</body>
</html>

We are now ready to launch the NodeJS app.

Step 3: Run the NodeJS application

To launch the application, simply issue the command

$ node index.js

From the output, we can see that the application is listening on port 3000. To confirm this, open your browser and browse your server’s IP as shown

http://ip-address:3000

Step 4: Dockerize the  NodeJS application

Next, we are going to create a Docker file

$ touch dockerfile

Next, Paste the configuration below

FROM node:carbon
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["node", "index.js"]

Let’s break this down:

The first line shows that we intend to use the latest version of Node to build our image. Node.JS usually uses Chemical elements to name its LTS versions on Node.

The second line points to the creation of the /usr/src/app directory which will accommodate the application’s code in the image.

Lines 3 and 4 directs the copying of the package.json file and the execution of the npm install command

COPY . . This packages the NodeJS application – Comprising the HTML and JS files – in the Docker Image.

EXPOSE 3000 This defines the port that the NodeJS app will use

CMD [“node”, “index.js”]  This displays the command that needs to be executed for the application to start.

Step 5. Build the Node.JS application

After creating the Docker file, we are now going to build the NodeJS app using the command indicated below. Be keen to include a space and a period at the very end as shown. The -t option helps us to tag the image to make it easier to locate it when we run the docker images command.

$ docker build -t mynode-app .

To confirm the existence of the image, run the command:

$ docker images

Step 6.  Running the  docker container

With our image ready let’s now launch it using the command:

# docker run -p 8080:3000 -d node-app

The command will direct the application to listen on port 8080 instead of port 3000. To confirm this, open your browser and browse the server’s URL as shown

http://ip-address:8080

Step 7.  Pushing the application to docker hub

This is the final step having already built our application and ensured that all is working as expected.

Before proceeding, ensure that you have created an account at docker hub

Next, build the image once more using your Docker credentials

# docker build -t [USERNAME]/tag .

The username is your docker hub login username and the tag is your application’s tag. In my case, the command will be a shown

# docker build -t jayarthur/mynode-app .

Now login to docker hub a shown.

# docker login

Provide your username and password and hit ENTER

The only thing left now is to push the image to the docker hub. To achieve this, execute the command:

# docker push jayarthur/mynode-app

Finally, log into your Docker hub and confirm the existence of the application’s image.

And this brings us the end of this tutorial. Feel free to reach out with your feedback. Thanks.

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

Dockerfile Volumes

When you run a Docker container, none of the data in that container is saved. What I mean is, let’s say you started a...
29/12/2020

Docker basic Command Line Tips and Tricks

Docker is an Open Source project for developers and system administrators to build, ship, and run distributed applications...
29/12/2020

Clean up Docker: Remove Old Images, Containers, and Volumes

Clean up docker Most users are complaining about the system/server slowness and somewhere consider to buy a new system for...
28/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

Dịch vụ thuê mua proxy US UK uy tín, chất lượng số #1
13/05/2024

Thuê mua proxy Việt Nam: Báo giá & các thông tin MỚI NHẤT
13/05/2024

Dịch vụ thuê mua proxy giá rẻ an toàn, tốc độ cao
13/05/2024

Thuê mua proxy V6 uy tín, chất lượng tại đâu?
11/05/2024

Thuê mua proxy Tiktok tăng doanh thu, hiệu quả cao
11/05/2024