Versions Compared

Key

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

...

Code Block
# adjust folder location as necessary for your Docker Host
mkdir -p /scratch/DockerVolume/flexdeploy
chmod -R 777 /scratch/DockerVolume
cd /scratch/DockerVolume
mkdir application
mkdir repository
cd application
mkdir plugins
cp ~/Tomcat_Complete-5.34.0.0/application/plugins/*.jar .
# ready with docker volume now


Tip

If you need to use additional libraries or file you can place them under /scratch/DockerVolume/flexdeploy. For example, if you unzip SQLcl zip file under /scratch/DockerVolume/flexdeploy, you can reference it as /home/oracle/sqlcl from container (including LOCALHOST endpoint), assuming sqlcl folder is created when SQLcl is unzipped.

Step 2 - Setup FlexDeploy Database

...

Code Block
docker run --name flexdeploy53flexdeploy54 -p 8004:8080 -e FLEX_DB_URL="jdbc:oracle:thin:@129.213.91.244:1521:xe" -e FD_ADMIN_PWD="welcome1" -e TZ=America/Chicago -e dbtype=oracle|postgres|mysql -v /scratch/DockerVolume/flexdeploy:/home/oracle flexdeploy/fd_tcat

...