-
Maintained by:
the Docker Community -
Where to get help:
the Docker Community Slack, Server Fault, Unix & Linux, or Stack Overflow
-
11.0.2-jdk21-temurin-jammy
,11.0-jdk21-temurin-jammy
,11-jdk21-temurin-jammy
,jdk21-temurin-jammy
-
11.0.2-jre21-temurin-jammy
,11.0-jre21-temurin-jammy
,11-jre21-temurin-jammy
,jre21-temurin-jammy
-
11.0.2-jdk17-temurin-jammy
,11.0-jdk17-temurin-jammy
,11-jdk17-temurin-jammy
,jdk17-temurin-jammy
-
11.0.2-jre17-temurin-jammy
,11.0-jre17-temurin-jammy
,11-jre17-temurin-jammy
,jre17-temurin-jammy
-
10.1.34-jdk21-temurin-jammy
,10.1-jdk21-temurin-jammy
,10-jdk21-temurin-jammy
-
10.1.34-jre21-temurin-jammy
,10.1-jre21-temurin-jammy
,10-jre21-temurin-jammy
-
10.1.34-jdk17-temurin-jammy
,10.1-jdk17-temurin-jammy
,10-jdk17-temurin-jammy
-
10.1.34-jre17-temurin-jammy
,10.1-jre17-temurin-jammy
,10-jre17-temurin-jammy
-
10.1.34-jdk11-temurin-jammy
,10.1-jdk11-temurin-jammy
,10-jdk11-temurin-jammy
-
10.1.34-jre11-temurin-jammy
,10.1-jre11-temurin-jammy
,10-jre11-temurin-jammy
-
9.0.98-jdk21-temurin-jammy
,9.0-jdk21-temurin-jammy
,9-jdk21-temurin-jammy
-
9.0.98-jre21-temurin-jammy
,9.0-jre21-temurin-jammy
,9-jre21-temurin-jammy
-
9.0.98-jdk17-temurin-jammy
,9.0-jdk17-temurin-jammy
,9-jdk17-temurin-jammy
-
9.0.98-jre17-temurin-jammy
,9.0-jre17-temurin-jammy
,9-jre17-temurin-jammy
-
9.0.98-jdk11-temurin-jammy
,9.0-jdk11-temurin-jammy
,9-jdk11-temurin-jammy
-
9.0.98-jre11-temurin-jammy
,9.0-jre11-temurin-jammy
,9-jre11-temurin-jammy
-
9.0.98-jdk8-temurin-jammy
,9.0-jdk8-temurin-jammy
,9-jdk8-temurin-jammy
-
9.0.98-jre8-temurin-jammy
,9.0-jre8-temurin-jammy
,9-jre8-temurin-jammy
-
Where to file issues:
https://github.com/docker-library/tomcat/issues -
Supported architectures: (more info)
amd64
,arm32v7
,arm64v8
,ppc64le
,riscv64
,s390x
-
Published image artifact details:
repo-info repo'srepos/tomcat/
directory (history)
(image metadata, transfer size, etc) -
Image updates:
official-images repo'slibrary/tomcat
label
official-images repo'slibrary/tomcat
file (history) -
Source of this description:
docs repo'stomcat/
directory (history)
Apache Tomcat (or simply Tomcat) is an open source web server and servlet container developed by the Apache Software Foundation (ASF). Tomcat implements the Java Servlet and the JavaServer Pages (JSP) specifications from Oracle, and provides a "pure Java" HTTP web server environment for Java code to run in. In the simplest config Tomcat runs in a single operating system process. The process runs a Java virtual machine (JVM). Every single HTTP request from a browser to Tomcat is processed in the Tomcat process in a separate thread.
Logo © Apache Software Fountation
Note: as of docker-library/tomcat#181, the upstream-provided (example) webapps are not enabled by default, per upstream's security recommendations, but are still available under the webapps.dist
folder within the image to make them easier to re-enable.
Run the default Tomcat server (CMD ["catalina.sh", "run"]
):
$ docker run -it --rm tomcat:9.0
You can test it by visiting http://container-ip:8080
in a browser or, if you need access outside the host, on port 8888:
$ docker run -it --rm -p 8888:8080 tomcat:9.0
You can then go to http://localhost:8888
or http://host-ip:8888
in a browser (noting that it will return a 404 since there are no webapps loaded by default).
The default Tomcat environment in the image is:
CATALINA_BASE: /usr/local/tomcat
CATALINA_HOME: /usr/local/tomcat
CATALINA_TMPDIR: /usr/local/tomcat/temp
JRE_HOME: /usr
CLASSPATH: /usr/local/tomcat/bin/bootstrap.jar:/usr/local/tomcat/bin/tomcat-juli.jar
The configuration files are available in /usr/local/tomcat/conf/
. By default, no user is included in the "manager-gui" role required to operate the "/manager/html" web application. If you wish to use this app, you must define such a user in tomcat-users.xml
.
View license information for the software contained in this image.
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
Some additional license information which was able to be auto-detected might be found in the repo-info
repository's tomcat/
directory.
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.