search
HomeOperation and MaintenanceDockerHow to start tomcat in docker

How to start tomcat in docker

Apr 18, 2023 am 10:20 AM

Docker is a lightweight virtualization technology that can isolate one or more applications or services. Among them, Docker containers are widely used to develop, test, deliver and deploy applications. Tomcat is a common Java web server that can run in a Docker container. This article will introduce how to start Tomcat in Docker.

  1. Download Tomcat image

The Docker image is a read-only template that contains the file system and startup commands for creating Docker containers. In order to start Tomcat in Docker, you need to download the Tomcat image first. You can find many Tomcat images on Docker Hub. Let's take the official image as an example. Enter the following command in the terminal:

docker pull tomcat

This command will download the latest version of the Tomcat image from Docker Hub.

  1. Create a container and start Tomcat

After downloading the image, we need to create a Docker container and start Tomcat. You can use the following command on the command line:

docker run -p 8080:8080 -d --name my-tomcat tomcat:latest

This command will start a Tomcat container in the background, specify the container name as my-tomcat, use the latest version of the tomcat image, and map the 8080 port in the container to port 8080 on the host.

When the container is started, you can access Tomcat through the following URL:

http://localhost:8080/
  1. Deploying Web Applications

By default, the Tomcat container will Automatically load the ROOT.war file in the application directory /usr/local/tomcat/webapps. So, if you are deploying your web application into a container, you can copy the application folder into the container's /usr/local/tomcat/webapps directory. For example, assuming your application name is my-app, you can use the following command to copy the application into the container:

docker cp my-app my-tomcat:/usr/local/tomcat/webapps/

This command will copy the my-app folder to / of the container my-tomcat usr/local/tomcat/webapps directory.

  1. Restart the container

After copying the application into the container, you need to restart the container for the application to take effect. You can restart the container using the following command:

docker restart my-tomcat

This command will restart the container my-tomcat.

  1. Accessing the Web Application

The application has been deployed and the container has been restarted. Now you can access the application. Assuming that the context path of your application is my-app, you can use the following URL to access it in the browser:

http://localhost:8080/my-app
  1. Package the application into a WAR file

You can package the application into a WAR file, and then copy the WAR file to the /usr/local/tomcat/webapps directory of the container. When the container starts, Tomcat will automatically decompress the WAR file in this directory. You can use the following command to package the application into a WAR file:

jar -cvf my-app.war my-app/

This command will package the my-app folder into a my-app.war file.

  1. Deploying applications through Dockerfile

In addition to manually copying applications into containers, you can also deploy applications through Dockerfiles. A Dockerfile is a text file containing instructions for building a Docker image. With a Dockerfile, we can create an image that contains the application.

The following is a simple Dockerfile example:

FROM tomcat
COPY my-app.war /usr/local/tomcat/webapps/

This Dockerfile uses the Tomcat image as the base image and copies my-app.war to the container's /usr/local/tomcat/webapps directory middle. Now, we can use the following command to build a Docker image:

docker build -t my-tomcat-app .

This command will build the Dockerfile in the current directory into a Docker image named my-tomcat-app. You can run the image using the following command:

docker run -p 8080:8080 -d --name my-tomcat-app my-tomcat-app:latest

This command will run the my-tomcat-app image and map it on port 8080 of the container.

At this point, you already know how to start and deploy Tomcat applications in Docker. If you are developing and deploying Java web applications, Docker provides a more convenient deployment method that can help you complete your work more efficiently.

The above is the detailed content of How to start tomcat in docker. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Docker and Linux: The Perfect PartnershipDocker and Linux: The Perfect PartnershipApr 30, 2025 am 12:02 AM

Docker and Linux are perfect matches because they can simplify the development and deployment of applications. 1) Docker uses Linux's namespaces and cgroups to implement container isolation and resource management. 2) Docker containers are more efficient than virtual machines, have faster startup speeds, and the mirrored hierarchical structure is easy to build and distribute. 3) On Linux, the installation and use of Docker is very simple, with only a few commands. 4) Through DockerCompose, you can easily manage and deploy multi-container applications.

Docker vs. Kubernetes: Deciding Which to UseDocker vs. Kubernetes: Deciding Which to UseApr 29, 2025 am 12:05 AM

The difference between Docker and Kubernetes is that Docker is a containerized platform suitable for small projects and development environments; Kubernetes is a container orchestration system suitable for large projects and production environments. 1.Docker simplifies application deployment and is suitable for small projects with limited resources. 2. Kubernetes provides automation and scalability capabilities, suitable for large projects that require efficient management.

Docker and Kubernetes: Building Scalable ApplicationsDocker and Kubernetes: Building Scalable ApplicationsApr 28, 2025 am 12:18 AM

Use Docker and Kubernetes to build scalable applications. 1) Create container images using Dockerfile, 2) Deployment and Service of Kubernetes through kubectl command, 3) Use HorizontalPodAutoscaler to achieve automatic scaling, thereby building an efficient and scalable application architecture.

Kubernetes and Docker: A Comparative AnalysisKubernetes and Docker: A Comparative AnalysisApr 27, 2025 am 12:05 AM

The main difference between Docker and Kubernetes is that Docker is used for containerization, while Kubernetes is used for container orchestration. 1.Docker provides a consistent environment to develop, test and deploy applications, and implement isolation and resource limitation through containers. 2. Kubernetes manages containerized applications, provides automated deployment, expansion and management functions, and supports load balancing and automatic scaling. The combination of the two can improve application deployment and management efficiency.

Running Docker on Linux: Installation and ConfigurationRunning Docker on Linux: Installation and ConfigurationApr 26, 2025 am 12:12 AM

Installing and configuring Docker on Linux requires ensuring that the system is 64-bit and kernel version 3.10 and above, use the command "sudoapt-getupdate" and install it with the command "sudoapt-getupdate" and verify it with "sudoapt-getupdate" and. Docker uses the namespace and control groups of the Linux kernel to achieve container isolation and resource limitation. The image is a read-only template, and the container can be modified. Examples of usage include running an Nginx server and creating images with custom Dockerfiles. common

Why Use Docker? Benefits and Advantages ExplainedWhy Use Docker? Benefits and Advantages ExplainedApr 25, 2025 am 12:05 AM

The reason for using Docker is that it provides an efficient, portable and consistent environment to package, distribute, and run applications. 1) Docker is a containerized platform that allows developers to package applications and their dependencies into lightweight, portable containers. 2) It is based on Linux container technology and joint file system to ensure fast startup and efficient operation. 3) Docker supports multi-stage construction, optimizes image size and deployment speed. 4) Using Docker can simplify development and deployment processes, improve efficiency and ensure consistency across environments.

Docker in Action: Real-World Examples and Use CasesDocker in Action: Real-World Examples and Use CasesApr 24, 2025 am 12:10 AM

Docker's application scenarios in actual projects include simplifying deployment, managing multi-container applications and performance optimization. 1.Docker simplifies application deployment, such as using Dockerfile to deploy Node.js applications. 2. DockerCompose manages multi-container applications, such as web and database services in microservice architecture. 3. Performance optimization uses multi-stage construction to reduce the image size and monitor the container status through health checks.

Docker vs. Kubernetes: Use Cases and ScenariosDocker vs. Kubernetes: Use Cases and ScenariosApr 23, 2025 am 12:11 AM

Select Docker in a small project or development environment, and Kubernetes in a large project or production environment. 1.Docker is suitable for rapid iteration and testing, 2. Kubernetes provides powerful container orchestration capabilities, suitable for managing and expanding large applications.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor