Versions Compared

Key

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

...

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

Now

Steps

  1. Pull docker image
  2. Start container using specific image.

First let's pull docker image flexdeploy/fd_tcat_xe_50. Adjust image name (if you are using tutorial image) and version as necessary.

Code Block
docker pull flexdeploy/fd_tcat_xe_50:5.0.0.2

...

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

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.

Port Run command example below uses port number 8000 will be used to access this particular install of FlexDeploy for access to FlexDeploy application, which maps to 8080 port inside docker container. Oracle XE is included as part of this image and it's port 1521 is also accessible on docker host. Adjust port numbers as appropriate for your docker host.

Code Block
docker run --name flexdeploy51_xe -p 1521:1521 -p 8000:8080 --shm-size=2gb flexdeploy/fd_tcat_xe_50:5.0.0.2

...

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.

Now you can launch FlexDeploy using http://<docker host>:8000/flexdeploy.

Tip

If necessary, make sure to open port 8000 for access from outside docker host.

As always when you first launch FlexDeploy, you will need to complete Registration process.

...