Sign inSign up

behaimits/makedoc-tomcat

By behaimits

Updated 10 months ago

Image
0

143

behaimits/makedoc-tomcat repository overview

MakeDoc

MakeDoc is a documentation tool providing a static documentation and analysis of selected SW technologies and products (TIBCO BW5/6, BWCE, EMS, iProcess) and it is maintained and sold by Behaim ITS company ( https://www.behaimits.com⁠). In case of issues, interest or pricing questions, please contact us at [email protected].

How to run the Docker container?

This docker container is meant to be run inside a docker compose app with behaimits/makedoc-server. It provides you with a web UI to view the generated documentation.

Example compose.yml:
services:
  makedoc-jenkins:
    container_name: makedoc-jenkins
    image: behaimits/makedoc-server:4.4.5 
    ports: 
      - 9080:8080
    volumes:
      - ./projects:/opt/makedoc/projects
      - shared-jenkins-volume:/var/jenkins_home
      - shared-portal-volume:/opt/makedoc/portal
      - shared-storage-volume:/opt/makedoc/storages
  makedoc-tomcat:
    container_name: makedoc-tomcat
    image: behaimits/makedoc-tomcat:4.4.5
    ports: 
      - 9081:8080
    volumes:
      - shared-portal-volume:/usr/local/tomcat/webapps/portal
      - shared-storage-volume:/usr/local/tomcat/webapps/storage
volumes:
  shared-portal-volume:
    driver: local
    driver_opts:
      device: ./portal
      type: none
      o: bind
  shared-storage-volume:
    driver: local
    driver_opts:
      device: ./storages
      type: none
      o: bind
  shared-jenkins-volume:

Notes

  • The portal will be available at localhost:9081/portal.

Tag summary

Content type

Image

Digest

sha256:46d256427

Size

175.7 MB

Last updated

10 months ago

docker pull behaimits/makedoc-tomcat:4.4.5