Running ThingWorx Docker Images
This release contains some basic Docker Compose files intended to help you test the built ThingWorx images. To start the compose environment, enter the following command:
docker-compose -f docker-compose-type.yml up -d
type can be one of the following values:
h2
postgres
mssql
azuresql
For example, enter these commands to perform the following operations:
Start an H2 image:
docker-compose -f docker-compose-h2.yml up -d
View the logs:
docker-compose -f docker-compose-h2.yml logs -f
Enter CTRL+C to close the logs.
Stop the image:
docker-compose -f docker-compose-h2.yml down
Was this helpful?