Managing local Template Designer Services
This section includes the procedures to manage locally installed Template Designer services.
- Update the version of the local Template Designer services
- Add changes to the local Template Designer container
- Stop and remove local Template Designer services
Update the version of the local Template Designer services
You can update the version of the locally installed Template Designer services by changing the Docker Compose file and restarting the services.
Before you begin
Locally installed Template Designer services must not be running.
Procedure
-
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
-
Run
docker-compose up -d designer
.Note: Locally installed Template Designer does not support rollback. In some cases rollback might work with different versions of locally installed Template Designer images. However, this practice is not supported. If you need to use an older version for Template Designer for some reason, back up your database.
Add changes to the local Template Designer Container
You can add changes to the locally installed Template Designer Container without creating a new container. In some cases, you might need to access to locally installed Template Designer running containers to add files or do some configuration. You can use the following steps to access locally installed Template Designer running container:
-
Run the following docker-compose command:
docker-compose exec -f <your-yaml-file>.yaml designer bash
-
Add your changes to the container.
-
Run the following docker-compose restart command:
docker-compose restart -f <your-yaml-file>.yaml designer
Stop and remove the local Template Designer services
To delete the locally installed Template Designer services and its network, run the following command:
docker-compose -f <your-yaml-file>.yaml down