Detailed process of installing Docker, creating images, loading and running NodeJS programs

Detailed process of installing Docker, creating images, loading and running NodeJS programs

System environment: Windows 7

1. Install Docker

Download and install docker-ToolBox from the Docker official website and install

After the installation is complete, three icons appear:

2. Create a Docker image

Docker can automatically build images based on the contents of the Dockerfile file.

Dockerfile is a text file that contains all the commands for creating an image. Use the docker build command to build an image based on its content.

Example, create a Docker image of a NodeJS program:

1. Create a new directory and initialize it with npm init in cmd.

2. Create a demo program with the following contents:

Note: If a formal product or project is packaged and released with Docker, such as the functional code in the above example, in order to prevent the source code from being extracted and leaked, the NodeJS code can be obfuscated and encrypted with JShaman before making the image.

Create an empty file named Dockerfile and fill in the following content:

FROM node:boron
 
# Create app directory
WORKDIR /app
 
# Install app dependencies
COPY package.json .
# For npm@5 or later, copy package-lock.json as well
# COPY package.json package-lock.json ./
 
RUN npm install
 
# Bundle app source
COPY . .
 
EXPOSE 3000
CMD [ "node", "demo.js" ]

3. Create an image

Start the Docker Quickstart Terminal and run the command

docker build -t nodedemo .

(. means creating in the current directory)

3. Run the image

docker run -p 3000:3000 -d nodedemo

Then you can access the nodejs service.

The above is the details of installing Docker, creating images, loading and running NodeJS programs. For more information about docker NodeJS running programs, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of JavaScript operation mechanism and a brief discussion on Event Loop
  • Learn the operating mechanism of jsBridge in one article
  • Let you understand the working principle of JavaScript
  • How to run JavaScript in Jupyter Notebook
  • Solve the problem that running js files in the node terminal does not support ES6 syntax
  • Tutorial on compiling and running HTML, CSS and JS files in Visual Studio Code
  • Example of running JavaScript with Golang
  • Front-end JavaScript operation principle

<<:  Solve the problem of Navicat for Mysql connection error 1251 (connection failed)

>>:  12 Laws of Web Design for Clean Code [Graphic]

Recommend

IE8 provides a good experience: Activities

Today I had a sneak peek at IE8 beta 1 (hereafter...

Nginx reverse proxy configuration removes prefix

When using nginx as a reverse proxy, you can simp...

Common parameters of IE web page pop-up windows can be set by yourself

The pop-up has nothing to do with whether your cur...

Pure CSS and Flutter realize breathing light effect respectively (example code)

Last time, a very studious fan asked if it was po...

Detailed explanation of HTML's <input> tag and how to disable it

Definition and Usage The <input> tag is use...

How to install theano and keras on ubuntu system

Note: The system is Ubuntu 14.04LTS, a 32-bit ope...

Vue implements internationalization of web page language switching

1. Basic steps 1: Install yarn add vue-i18n Creat...

CentOS 7.x deployment of master and slave DNS servers

1. Preparation Example: Two machines: 192.168.219...

A brief discussion on Vue3 father-son value transfer

Table of contents From father to son: 1. In the s...

css3 animation ball rolling js control animation pause

CSS3 can create animations, which can replace man...

How to use Linux tr command

01. Command Overview The tr command can replace, ...