Sign inSign up

jonherrmann/tomcat-win

By jonherrmann

Updated about 9 years ago

Apache Tomcat Java Servlet Container for the Windows Docker Engine

Image
1

553

jonherrmann/tomcat-win repository overview

DockerHub

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.

Tag summary

Content type

Image

Digest

Size

545 MB

Last updated

about 9 years ago

docker pull jonherrmann/tomcat-win