Docker uses dockerfile to start node.js application

Docker uses dockerfile to start node.js application

Writing a Dockerfile

Taking the directory automatically created by express as an example, the directory structure is as follows:

├── /bin
│ └── www
├── /node_modules
├── /public
├── /routes
├── /views
├── package-lock.json
├── package.json
├── ecosystem.config.js
├── app.js
└── Dockerfile

Create a new Dockerfile file in the project directory

FROM node:10.15
MAINTAINER [email protected]
COPY ./app/
WORKDIR /app
RUN npm install pm2 -g
EXPOSE 8003
CMD ["pm2-runtime", "ecosystem.config.js"]
  • FROM specifies that the base image is version 10.15 of node (the official version of node can be viewed here)
  • MAINTAINER describes the maintainer of the image
  • The COPY command copies files from the host machine to the image. The format is COPY [--chown=<user>:<group>] <source path>... <destination path>. Here, all files in the project directory are copied to the /app directory in the image. If the target path does not exist, Docker will automatically create it.
  • WORKDIR is used to specify the working directory, which is the directory where CMD is executed.
  • The RUN command is used to execute shell commands, here it is used to install pm2
  • The EXPOSE command is used to declare the service port provided by the runtime container, but please note that the service of this port will not be enabled at runtime. This command is mainly to help users understand the daemon port of the mirror service to facilitate configuration mapping; in addition, when using random port mapping, it will automatically randomly map the EXPOSE port
  • CMD is the default startup command of the container main process

Build the image

Execute in the project directory

docker build -t express-app:v1 .

If the build is successful, check the mirror list

docker images

The image express-app:v1 should be output

Running the container

docker run -d -p 8003:3000 --name="express-app" express-app:v1

docker run is an abbreviation of the two commands docker create and docker start .

  • -d stands for --detach , which means letting the container run in the background.
  • -p specifies the port mapping between the host and the container. The left side is the port of the host, and the right side is the port of the container. That is to say, accessing port 8003 of the host will be mapped to port 3000 in the container.
  • --name sets the container alias. If not specified, Docker will randomly generate a name, such as tender_swirles .

implement

docker ps

The normal display is as follows

Add the -a parameter to view all started containers.

Entering the container

If you want to enter the container to operate, execute the following command

docker exec -it express-app bash 

-i and -t are usually used together. -i starts the interactive mode, -t specifies that a terminal needs to be allocated. You can try the effect of not passing one of them.

Similar to exec is the attach command, which is docker attach express-app . However, exiting from stdin will stop the container, so it is recommended to use the exec command.

Close Operation

Stop the container

docker stop express-app

Deleting a container

docker rm express-app

If the container is still running when you delete it, you need to add the -f parameter

Deleting an image

docker rmi express-app:v1

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to create your own image using Dockerfile
  • How to use Dockerfile to build images in Docker
  • Idea configures maven-tomcat-plugin to implement project deployment
  • Detailed explanation of the role of the spring-boot-maven-plugin plugin
  • Use Maven shade plugin to create executable Jar package in Java
  • dockerfile-maven-plugin minimalist tutorial (recommended)

<<:  Detailed tutorial on MySql installation and uninstallation

>>:  Tips for writing concise React components

Recommend

Use overflow: hidden to disable page scrollbars

Copy code The code is as follows: html { overflow...

Comprehensive analysis of MySql master-slave replication mechanism

Table of contents Master-slave replication mechan...

How to use nodejs to write a data table entity class generation tool for C#

Although Microsoft provides T4 templates, I find ...

How to install redis in Docke

1. Search for redis image docker search redis 2. ...

MySQL randomly extracts a certain number of records

In the past, I used to directly order by rand() t...

Mount the disk in a directory under Ubuntu 18.04

Introduction This article records how to mount a ...

Summary of MySql index, lock, and transaction knowledge points

This article summarizes the knowledge points of M...

Detailed explanation of the data responsiveness principle of Vue

This article is mainly for those who do not under...

Tips for organizing strings in Linux

In Linux operations, we often replace and count s...

Vue implements zoom in, zoom out and drag function

This article example shares the specific code of ...

Baota Linux panel command list

Table of contents Install Pagoda Management Pagod...

How to use cursor triggers in MySQL

cursor The set of rows returned by the select que...