Skip to content

Commit

Permalink
feat(compose): add tomcat
Browse files Browse the repository at this point in the history
  • Loading branch information
isagna committed Jul 30, 2019
1 parent d81a099 commit 0edd743
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
Binary file added public/images/tomcat.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/tomcat/docker-compose.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{{ container_name }}:
container_name: {{ container_name }}
image: tomcat:{{ version }}
ports:
- {{ port }}:8080
24 changes: 24 additions & 0 deletions src/tomcat/tomcat.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "Tomcat",
"description": "Apache Tomcat is an open source implementation of the Java Servlet and JavaServer Pages technologies.",
"author": {
"name": "Skyflow",
"site": "https:\/\/skyflow.io",
"github": "https://github.com/skyflow-io/Composes/tree/master/src/tomcat"
},
"slug": "tomcat",
"variables": {
"version": {
"description": "Image version",
"value": "latest",
"type": "list",
"choices": [
"latest", "9.0-jdk13-openjdk-oracle", "9-jdk8-adoptopenjdk-hotspot", "8.5.43-jdk13-openjdk-oracle", "8.5-jdk8-adoptopenjdk-hotspot"
]
},
"port": {
"description": "Application port",
"value": "8888"
}
}
}

0 comments on commit 0edd743

Please sign in to comment.