Briefly describe how to install Tomcat image and deploy web project in Docker

Briefly describe how to install Tomcat image and deploy web project in Docker

1. Install Tomcat

1. Find the tomcat image on Docker Hub

docker search tomcat 

Write the picture description here

2. Pull the official image

docker pull tomcat

Write the picture description here

Wait for the download to complete, it may take some time.

Write the picture description here

3. View all docker images

docker images

Write the picture description here

4. Start the tomcat image

Note: The former is the external access port: The latter is the container internal port

docker run -d -p 8080:8080 tomcat

Write the picture description here

Note: The former is the external access port: The latter is the container internal port. The following command can start Tomcat in the background
-d: Run the container in the background and return the container ID;
-i: Run the container in interactive mode, usually used with -t;
-t: reallocate a pseudo input terminal for the container, usually used together with -i;

docker run –d -p 8080:8080 tomcat

Write the picture description here

The startup is successful as follows:

Write the picture description here

5. View running containers

docker ps

Write the picture description here

Enter the ip and port to view the tomcat homepage:

Write the picture description here

2. Deploy your own web project to Tomcat

1. Upload the war package

Write the picture description here

2. Create and edit "Dockerfile" with the following content:

from tomcat
MAINTAINER *********@163.com 
RUN rm -rf /usr/local/tomcat/webapps/*
COPY button.war /usr/local/tomcat/webapps
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

illustrate:

from tomcat #your tomcat mirror MAINTAINER *********@163.com #author COPY button.war /usr/local/tomcat/webapps #place it in tomcat's webapps directory

3. Generate a new image

docker build -t button:v1 .

Write the picture description here

4. Start a new image

docker run -d -p 8080:8080 button:v1

Write the picture description here

5. Check the started image

You can add the parameter -itd to start tomcat in the background and view the started image in the following way

docker ps

Write the picture description here

6. To view the projects in tomcat, you can use the following command to enter the tomcat image:

docker exec -it ******* /bin/bash #****** is the container id (CONTAINER_ID)

Write the picture description here

After we enter the image, when we want to modify some parameters, we generally need to install a text editor, taking vim as an example:
Since the download address is an overseas address, the download speed is very slow and may be interrupted, so make the following configuration:

mv /etc/apt/sources.list /etc/apt/sources.list.bak
  echo "deb http://mirrors.163.com/debian/ jessie main non-free contrib" >/etc/apt/sources.list
  echo "deb http://mirrors.163.com/debian/ jessie-proposed-updates main non-free contrib" >>/etc/apt/sources.list
  echo "deb-src http://mirrors.163.com/debian/ jessie main non-free contrib" >>/etc/apt/sources.list
  echo "deb-src http://mirrors.163.com/debian/ jessie-proposed-updates main non-free contrib" >>/etc/apt/sources.list

Then update
apt update
Now we can install the software we need, such as vim
apt install vim

7. Enter the IP and port to view

Write the picture description here

8. You can view the log of the specified container

docker logs -f container id

Write the picture description here

9. After deploying the web project, the time when the docker container and the host, the docker container and the tomcat application print logs may differ by 8 hours from our current time. You can add the following configuration:

① When starting the container, mount the system time into the container to solve the problem of inconsistency between the Docker container and the host time, as shown below:
Adding parameters

-v /etc/localtime:/etc/localtime:ro

The complete command is as follows:

sudo docker run -d --name button-api -p 8080:8080 -v /etc/localtime:/etc/localtime:ro button-api:v1

② The docker container and the tomcat application print log time are inconsistent. After starting the tomcat container, enter the "bin" directory of tomcat, modify the catalina.sh file and add the following content to the first line after the comment:

JAVA_OPTS="$JAVA_OPTS -Dfile.encoding=UTF8 -Duser.timezone=GMT+08"

As shown in the following figure:

Write the picture description here

After saving the changes, restart the Docker container.
Restart method:
Use "docker ps" to query the container ID and restart it using the following command:

docker restart container id

This will resolve the issue.

This is the end of this article about briefly installing Tomcat image with Docker and deploying web projects. For more related content about installing Tomcat image with Docker and deploying it, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to use IDEA to create a web project and publish it to tomcat
  • How to remove the embedded Tomcat in Spring Boot and start it in a non-web way
  • Detailed explanation of the process of deploying Tomcat and creating the first web project in IDEA 2020.3.1
  • Tomcat first deployment web project process diagram
  • Solve the problem that the files under WEB-INF/classes are not compiled after tomcat releases the project
  • Solve the problem that SpringBoot webSocket resources cannot be loaded and tomcat startup errors
  • IDEA graphic tutorial on configuring Tomcat server and publishing web projects
  • Alibaba Cloud Server Linux System Builds Tomcat to Deploy Web Project
  • Analysis of the process of deploying pure HTML files in Tomcat and WebLogic
  • IDEA2020.1.2 Detailed tutorial on creating a web project and configuring Tomcat
  • How to configure Tomcat and run your first Java Web project on IntelliJ IDEA 2018
  • Idea configures tomcat to start a web project graphic tutorial
  • Java web project starts Tomcat error solution
  • Tomcat source code analysis of Web requests and processing

<<:  Explanation of the execution priority of mySQL keywords

>>:  How to use Vue cache function

Recommend

MySQL 5.7 deployment and remote access configuration under Linux

Preface: Recently I am going to team up with my p...

Summary of several commonly used CentOS7 images based on Docker

Table of contents 1 Install Docker 2 Configuring ...

Complete steps for using Nginx+Tomcat for load balancing under Windows

Preface Today, Prince will talk to you about the ...

How to use multi-core CPU to speed up your Linux commands (GNU Parallel)

Have you ever had the need to compute a very larg...

Windows10 mysql 8.0.12 non-installation version configuration startup method

This article shares the specific steps for config...

Review of the best web design works in 2012 [Part 1]

At the beginning of the new year, I would like to...

How to publish a locally built docker image to dockerhub

Today we will introduce how to publish the local ...

Vue implements a scroll bar style

At first, I wanted to modify the browser scroll b...

JavaScript implements fireworks effects with sound effects

It took me half an hour to write the code, and th...

Detailed examples of how to use the box-shadow property in CSS3

There are many attributes in CSS. Some attributes...

Recommend a cool interactive website made by a front-end engineer

Website link: http://strml.net/ By Samuel Reed Ti...

JavaScript to achieve drop-down menu effect

Use Javascript to implement a drop-down menu for ...

HTML Table Tag Tutorial (47): Nested Tables

<br />In the page, typesetting is achieved b...

DOCTYPE Document Type Declaration (Must-Read for Web Page Lovers)

DOCTYPE DECLARATION At the top of every page you w...