How does docker deploy tomcat?
How docker deploys tomcat:
docker pull tomcat
Find the Tomcat image on Docker Hub:
You can check other versions of tomcat through Sort by. The default is the latest version tomcat:latest.
In addition, we can also use the docker search tomcat command to view the available versions:
After waiting for the download to complete, we can find the REPOSITORY for tomcat in the local mirror list Mirror.runoob@runoob:~/tomcat$ docker search tomcat
NAME STARS Official Automated
TOMCAT Apache Tomcat is An Open Source Implementa ... 744 [OK]
Dordoka/Tomcat Ubuntu 14.04, Oracle Jdk 8 and Tomcat 8 Ba ... 19 [OK]
Consol/Tomcat-7.0 Tomcat 7.0.57, 8080, "Admin/Admin" 16 [ok]
Consol/Tomcat-8.0.15, 8080, "Admin/Admin" 14 [OK]
CLOUDESIRE/TOMCAT TOMCAT Server, 6/7/8 8 [ok]
DavidCaste/Alpine-Tomcat Apache Tomcat 7/8 USIRACLE JAVA 7/8 wi ... 6 [ok]
andreptb/TOMCAT Debian Jessie Based Image with Apache Tomc ... 4 [OK]
## Kieker/Tomcat 2 [OK]## FBRX/Tomcat Minimal Tomcat image based on Alpine Linux 2
##runoob@runoob:~/tomcat$ docker pull tomcat
runoob@runoob:~/tomcat$ docker images|grep tomcat》
tomcat ##docker video tutorial
The above is the detailed content of How does docker deploy tomcat?. For more information, please follow other related articles on the PHP Chinese website!