Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 366 Bytes

README.md

File metadata and controls

15 lines (8 loc) · 366 Bytes

HelloWorld Servlet example with corresponding Dockerfile

Use Maven Build first to create war file in Target folder.

mvn clean package

Artifact will be created in target folder.

docker build -t mavenbuild .

Once this is done u will be see image using docker images

Use below command to run the container

docker run -d -p 8080:8080 --name mavenbuild mavenbuild