Browse Source

updates documentation by doing it more generic.

Alex Soto 10 years ago
parent
commit
4214a709b1
1 changed files with 16 additions and 10 deletions
  1. 16 10
      tomee/content.md

+ 16 - 10
tomee/content.md

@@ -4,10 +4,6 @@ Apache TomEE, pronounced "Tommy", is an all-Apache Java EE Web Profile certified
 
 %%LOGO%%
 
-Versions 1.X of Apache TomEE are Java EE 6 Web Profile certified.
-
-Versions 7.X of Apache TomEE are Java EE 7 Web Profile certified.
-
 Apache TomEE comes with four different flavors, Web Profile, JAX-RS, Plus and Plume.
 
 -	Apache TomEE Web Profile delivers Servlets, JSP, JSF, JTA, JPA, CDI, Bean Validation and EJB Lite.
@@ -17,31 +13,41 @@ Apache TomEE comes with four different flavors, Web Profile, JAX-RS, Plus and Pl
 
 All Dockerfile files of supported versions can be found at https://github.com/tomitribe/docker-tomee
 
+# Apache TomEE and Tomitribe
+
+Tomitribe provides commercial support, professional services and training for Apache TomEE. We offers a new business model that furthers the development and growth of the Open Source project all the while fulfilling business requirement for production support. The Tomitribe Community Partnership Program connects businesses with the community.
+
+All of Tomitribe developers are committers of TomEE and are influencers of the project's direction and development. We want to extend this influence to the people and companies that matter, users of TomEE. How? The Tomitribe Community Partnership Program.
+
+Below are some press releases that might be helpful:
+-	Tomitribe Announces Enterprise Service Support for Apache TomEE http://www.tomitribe.com/company/press/tomitribe_enterprise_service_support_for_apache_tomee_javaone_2013/
+-	Tomitribe Introduces Community Partnership Program Conference http://www.tomitribe.com/company/press/tomitribe-introduces-community-partnership-program-and-presents-java-ee-sessions-at-javaone-2014-conference/
+
 # How to use this image.
 
 Run the default TomEE server (`CMD ["catalina.sh", "run"]`):
 
-docker run -it --rm tomee/<flavor>:<tomeeversion>\-<java-version>\-
+	docker run -it --rm tomee/<flavor>:<tomeeversion>\-<java-version>\-
 
 For example:
 
-docker run -it --rm tomee/webprofile:1.7.1-jre7
+	docker run -it --rm tomee/webprofile:<tomeeversion>-jre7
 
 or
 
-docker run -it --rm tomee/jaxrs:1.7.1-jre7
+docker run -it --rm tomee/jaxrs:<tomeeversion>-jre7
 
 You can test it by visiting `http://container-ip:8080` in a browser or, if you need access outside the host, on port 8888:
 
-docker run -it --rm -p 8888:8080 tomee/plus:1.7.1-jre7
+	docker run -it --rm -p 8888:8080 tomee/plus:<tomeeversion>-jre7
 
 You can then go to `http://localhost:8888` or `http://host-ip:8888` in a browser.
 
 The configuration files are available in `/usr/local/tomee/conf/`. By default, no user is included in the "manager-gui" role required to operate the "/manager/html" web application. If you wish to use this app, you must define such a user in `tomcat-users.xml`.
 
-You can also use this image as base image in your Dockerfile file. Then you can add your application by running next Dockerfile operation:
+You can also use this image as base image for deploying your war application. To do it you need to create a Dockerfile based on Tomee Docker image and add the war file in `webapps` directory:
 
-ADD <locationofapplication>/<warfile> /usr/local/tomee/webapps/<warfile>
+	ADD <locationofapplication>/<warfile> /usr/local/tomee/webapps/<warfile>
 
 # Issues & Contributors