An open API service indexing awesome lists of open source software.

https://github.com/ericogr/docker-tomcat

Dockerfile to build an image with Tomcat
https://github.com/ericogr/docker-tomcat

Last synced: about 2 months ago
JSON representation

Dockerfile to build an image with Tomcat

Awesome Lists containing this project

README

          

# docker-maven
A Dockerfile that produces a container that will run Tomcat

#Username and password
docker/docker

#Image Creation

This example creates the image with the tag ericogr/tomcat, but you can change this to use your own username.

```sh
$ docker build -t="ericogr/tomcat" .
```

#Container Creation / Running

```sh
$ docker run -d -p 8080:8080 ericogr/tomcat
```