Apache Tomcat Java Servlet Container for the Windows Docker Engine
553
This image is intended for testing JAVA web applications in Apache Tomcat on Windows.
It is based on the nanoserver image.
To set a Tomcat manager password, pass the environment variable TOMCAT_MANAGER_PASSWORD to the docker container:
docker run -p 8080:8080 -e TOMCAT_MANAGER_PASSWORD=s3cr3t jonherrmann/tomcat-win
Please note that depending on your docker host configuration the container might not be accessible via http://localhost:8080 . Use docker inspect to get the IP address of the container:
docker inspect <CONTAINER ID>
will output something like:
"Networks": {
"nat": {
...
"IPAddress": "172.18.254.131",
...
}
}
The Dockerfile is on GitHub.
Content type
Image
Digest
Size
545 MB
Last updated
about 9 years ago
docker pull jonherrmann/tomcat-win