Versions Compared

Key

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

You must have Docker Engine installed. See https://docs.docker.com/get-docker/ for information on how to do that.

If running Docker Desktop, please adjust your memory configuration so that 4 gb will be available to the container running the fd_tcat_postgres  image.

...

Here are main steps for this type of docker image.

  1. Pull docker image

  2. Start container using specific image.

Step 1 - Pull Docker Image

...

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. Since this is just for a demo or POC we are going to just use the latest version. If you’d like you can specify with something like this for the image name: flexdeploy/fd_tcat_postgres:67.0.0.0

Code Block
docker run --name flexdeploy56_postgresflexdeploy -p 5432:5432 -p 8000:8080 -e TZ=$(date +%Z) flexdeploy/fd_tcat_postgres
or
docker run --name flexdeploy56_postgresflexdeploy -p 5432:5432 -p 8000:8080 -e TZ=America/Chicago flexdeploy/fd_tcat_postgres

...