简体   繁体   中英

How to install Tomcat container for Docker in Fedora 28?

I am new in Docker , I would like to know how to install Tomcat Container from the command line, also, what are the pre-requisites, do I need to download Java on Fedora 28 first? Or Tomcat already contains a JVM ?

The tomcat/8.5/jre8/Dockerfile image definition starts with

FROM openjdk:8-jre

So it already includes a JDK.

All you need to do is run the default Tomcat server (CMD ["catalina.sh", "run"]):

$ docker run -it --rm tomcat:8.0

You can test it by visiting http://container-ip:8080

See more at hub.docker.com/_/tomcat/ .

All you need is to install docker first .

The OP adds:

To be able to connect I had to run below command to get the container ID with

 docker ps docker inspect <containerid> | grep "IPAddress" 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM