Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
maxLevel5
minLevel3

...

ImageNotes
flexdeploy/fd_tcat_51 (tick)FlexDeploy 5.1, you need to provide database connection details and working folder location. See Setup Steps.
flexdeploy/fd_tcat_xe_51FlexDeploy 5.10 install with Oracle XE database. For POC and demo purposes only. See Setup Steps.
flexdeploy/fd_tcat_postgres_51 FlexDeploy 5.2 install with PostgreSQL database. For POC and demo purposes only. See Setup Steps.
flexdeploy/ebs-tutorialFlexDeploy 5.1 install with Oracle XE database for EBS Tutorial. For POC and demo purposes only. See Setup Steps.
flexdeploy/soa-tutorialFlexDeploy 5.1 install with Oracle XE database for SOA Tutorial. For POC and demo purposes only. See Setup Steps.
flexdeploy/adf-tutorialFlexDeploy 5.1 install with Oracle XE database for ADF Tutorial. For POC and demo purposes only. See Setup Steps.
flexdeploy/java-tomcat-tutorialFlexDeploy 5.1 install with Oracle XE database for Tomcat Tutorial. For POC and demo purposes only. See Setup Steps.
flexdeploy/weblogic-resource-tutorialFlexDeploy 5.1 install with Oracle XE database for WebLogic Tutorial. For POC and demo purposes only. See Setup Steps.

(tick) - production ready

fd_tcat_51

...

Once you complete registration, you are ready to use FlexDeploy.

fd_tcat_xe_51 / fd_tcat_postgres_52 / tutorials

Start command session to Docker host and make sure you can run docker commands. If necessary sudo to root or other user.

...

Now let's run FlexDeploy docker image. Adjust image name (if you are using tutorial image) and version as necessary.

2.1 fd_tcat_xe_51 / tutorials

This particular image contains Oracle XE and FlexDeploy with Tomcat, i.e. data and artifact repository is all part of the container. Data is persistent in the container.

...

Code Block
docker run --name flexdeploy51_xe -p 1521:1521 -p 8000:8080 --shm-size=2gb -e TZ=$(date +%Z) flexdeploy/fd_tcat_xe_51:5.1.0.0
or
docker run --name flexdeploy51_xe -p 1521:1521 -p 8000:8080 --shm-size=2gb -e TZ=America/Chicago flexdeploy/fd_tcat_xe_51:5.1.0.0

2.2 fd_tcat_postgres_51

This particular image contains PostgreSQL DB and FlexDeploy with Tomcat, i.e. data and artifact repository is all part of the container. Data is persistent in the container.

Run command example below uses port number 8000 for access to FlexDeploy application, which maps to 8080 port inside docker container. PostgreSQL is included as part of this image and it's port 5432 is also accessible on docker host. Adjust port numbers, Timezone as appropriate for your docker host.

Code Block
docker run --name flexdeploy51_postgres -p 5432:5432 -p 8000:8080 -e TZ=$(date +%Z) flexdeploy/fd_tcat_postgres_51:5.1.0.0


After some time, you can close command session that started FlexDeploy docker container. If you use Ctrl + C, then container will exit, just close session window.

...