Running a ThingWorx CXServer Image
This release contains some basic Docker Compose files intended to help you test the built images. To start the Compose environment for ThingWorx Connection Server, navigate to the samples folder and execute the following commands:
• Start a Connection Server:
docker compose up -d
• Check container logs:
docker compose logs -f cxserver
• Stop and remove a specific container:
docker compose rm -s cxserver
• Stop and remove all containers:
docker compose down
• Stop and remove all containers and clean volumes (cleans certs, etc.):
docker compose down -v