Deploying ibi WebFOCUS - Container Edition Using Docker Compose
Following are the steps to deploy WebFOCUS - Container Edition using Docker Compose.
- Procedure
-
Download the WebFOCUS - Container Edition tar file and extract it.
-
To update the docker compose environment file, navigate to
<webfocus-ce>/scripts/docker-compose
.$> cd <webfocus-ce>/scripts/docker-compose
Edit the
.env
file and add the Customer ID inWF_CUSTOMERID
parameter.WF_CUSTOMERID= <customerid>
-
To build the Docker images, use the following commands.
$> cd <webfocus-ce>/scripts/docker-compose $> docker compose build
-
To deploy it on the server only, use the following commands.
$> cd <webfocus-ce>/scripts/docker-compose
$> docker compose --profile server upNote: If you want to pull images from the registry, and skip image build then run with--no-build
argument, for example,docker compose --profile server up --no-build
. -
To deploy it on the server and client, use the following command.
$> docker compose up
-
To check the running container, use the following command.
$> docker compose ps
-
To run the smoke test, use the following command.
$> docker compose --profile smoketest up
-
To undeploy the cluster, use the following command.
$> docker compose down