Managing Template Designer Container Service from Docker Compose

This section includes the procedure to manage Template Designer container service.

Update the Template Designer Container

You can update/change your Template Designer container version by using the up command of docker-compose.

Before you begin

Your Template Designer must be running.

Procedure

  1. Use your text editor to update the <your-yaml-file>.yaml with the newest image version/tag:
    image:  store/ibmcorp/icam-bpd-ui:3.2.0.0-x86_64
    
  2. Run docker-compose up -d designer.

    Note: Template Designer does not support rollback. In some cases rollback may work with different versions of Template Designer images. However, this practice is not supported. If you need to use a older version for Template Designer for some reason, back up your database.

Add changes to the Template Designer Container

You can add changes to the Template Designer Container without creating a new container. In some cases, you may need to access to Template Designer running containers to add files or do some configuration. You can use the following steps to access Template Designer running container:

  1. Run the following docker-compose command:
    docker-compose exec -f <your-yaml-file>.yaml designer bash
    
  2. Add your changes to the container.
  3. Run the following docker-compose restart command:
    docker-compose restart -f <your-yaml-file>.yaml designer
    

Remove/Delete Template Designer Container Service

To delete Template Designer services and its network, run the following command:

docker-compose -f <your-yaml-file>.yaml down