Skip to content

Latest commit

 

History

History

dctm-catalog

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Catalog - Software used to build the images

When you build an image that need packages from Documentum or Oracle, the packages must be placed in the subdirectory bundles.

You may choose any solution to distribute the packages (shared network drive, fp, http file server, ...).

I choose the simplest: the packages are stored on my local disk and I have a script to copy them to the right place.

The catalog layout:
catalog 1

catalog 2

catalog 3

And the script install.sh:

SOURCE=./distrib
# the root folder of the dctm-docker project
TARGET=..

echo "Copying BAM bundle"
cp $SOURCE/documentum/bam/2.1/bam-server.war $TARGET/dctm-bam/bundles/

echo "Copying BPS bundle"
cp $SOURCE/documentum/bps/2.1/bps.war $TARGET/dctm-bps/bundles/

...