https://github.com/kirillF/centos-tomcat
  
  
    Docker CentOs 7 + Java 15 + Tomcat 9 
    https://github.com/kirillF/centos-tomcat
  
centos-tomcat docker-image
        Last synced: 4 months ago 
        JSON representation
    
Docker CentOs 7 + Java 15 + Tomcat 9
- Host: GitHub
 - URL: https://github.com/kirillF/centos-tomcat
 - Owner: kirillF
 - Created: 2014-11-30T00:06:21.000Z (almost 11 years ago)
 - Default Branch: master
 - Last Pushed: 2022-06-19T17:42:47.000Z (over 3 years ago)
 - Last Synced: 2024-08-05T17:43:06.436Z (about 1 year ago)
 - Topics: centos-tomcat, docker-image
 - Language: Shell
 - Homepage:
 - Size: 21.5 KB
 - Stars: 53
 - Watchers: 5
 - Forks: 86
 - Open Issues: 1
 - 
            Metadata Files:
            
- Readme: README.md
 
 
Awesome Lists containing this project
- awesome-hacking-lists - kirillF/centos-tomcat - Docker CentOs 7 + Java 15 + Tomcat 9 (Shell)
 
README
          Docker container: CentOS 7 + Java 17 + Tomcat 9
## Build the image
```sh
git clone https://github.com/kirillF/centos-tomcat.git
cd centos-tomcat
docker build -t kirillf/centos-tomcat .
```
## How to use
Put your war under the `/opt/tomcat/webapps` directory and run the following command.
```sh
docker run -v /opt/tomcat/webapps:/opt/tomcat/webapps -v /opt/tomcat/logs:/opt/tomcat/logs -p 8080:8080 -i -t --name centos-tomcat kirillf/centos-tomcat
```
Once you run it, you can start the container with `docker start centos-tomcat` in next time and log file will be under the `/opt/tomcat/logs` directory.
Also, if you got some error, you can remove the container with `docker rm centos-tomcat`. Your current container list will be show with `docker ps -a`.
For Mac user, you must share the directory `/opt/tomcat/webapps` and `/opt/tomcat/logs` on Docker > Preferences > File Sharing.
## Versions
If you got error while build the docker image, please check the latest version of Java and Tomcat.
|Software|Version|Note|
|:-----------|:------------|:------------|
|CentOS|7||
|Java|17 [Java Release Note](https://jdk.java.net/17/release-notes)|
|Apache Tomcat|9.0.54|[Tomcat Download Page](https://tomcat.apache.org/download-90.cgi)|
[Docker Official Image for Tomcat](https://github.com/docker-library/tomcat) is also available.