Docker installation tomcat dubbo-admin instance skills

Docker installation tomcat dubbo-admin instance skills

1. Download the tomcat image

docker pull tomcat:8.5.29

2. Verify the image

docker images

3. Install tomcat

The default tomcat port is mapped to the http port 8080, and the corresponding files are mounted to the host machine.

docker run --name dubbo-admin -p 18080:8080 -v /root/dubbo-admin/tomcat-users.xml:/usr/local/tomcat/conf/tomcat-users.xml -v /root/dubbo-admin/log:/usr/local/tomcat/logs tomcat:8.5.29

4. Verify tomcat

Visit: http://ip:external interface 18080

http://192.168.5.180:18080

The above are all the relevant knowledge points introduced this time. Thank you for your learning and support for 123WORDPRESS.COM.

You may also be interested in:
  • Docker learning method to build JAVA Tomcat operating environment based on Dockerfile
  • Detailed explanation of building a Mysql container + Tomcat container connection environment through Docker
  • Docker-How to use dockerfile to build tomcat service
  • Solution to 404 Problem of Tomcat Installation in Docker

<<:  How to use DQL commands to query data in MySQL

>>:  jQuery implements the function of disabling the control button of sending verification code

Recommend

Five guidelines to help you write maintainable CSS code

1. Add a comment block at the beginning of the sty...

Analysis of the reasons why MySQL field definitions should not use null

Why is NULL so often used? (1) Java's null Nu...

Detailed example of changing Linux account password

Change personal account password If ordinary user...

Linux Dig command usage

Dig Introduction: Dig is a tool that queries DNS ...

How to use the Linux seq command

1. Command Introduction The seq (Sequence) comman...

Analysis of idea compiler vue indentation error problem scenario

Project scenario: When running the Vue project, t...

Detailed explanation of the steps of using ElementUI in actual projects

Table of contents 1. Table self-sorting 2. Paging...

Two problems encountered when deploying rabbitmq with Docker

1. Background The following two problems are enco...

Detailed explanation of CocosCreator message distribution mechanism

Overview This article begins to introduce content...

A brief discussion on HTML doctype and encoding

DOCTYPE Doctype is used to tell the browser which...

How to choose the format when using binlog in MySQL

Table of contents 1. Three modes of binlog 1.Stat...