Console Docker Hub Description (Draft)
Supported Tags
develop
- under development and subject to change without noticelatest
- the current production releasestable
- the release is stable and released bi-weekly. It contains both new features and bug fixes.lts
- (Long Term Support) the release is stable and supports bug fixes for a year from the release date.
Quick reference
Release Notes:
Release Notes can be found here.
Where to get help:
Where to file issues:
Supported architectures:
amd64
Other architectures to be added soon, bare-metal binaries for other architectures can be found on github
References
(Make sure you are enrolled in the ClearBlade Academy)
What is ClearBlade?
ClearBlade is the enterprise Internet of Things platform to rapidly engineer and run real-time, scalable Industrial IoT applications.
What is ClearBlade Console?
The console is the developer’s web interface in the ClearBlade platform.
How to use this image
A user can choose any of the following options to use this image
Start Console Pointing to Edge (Recommended)
The ClearBlade Console can also be configured to point to the ClearBlade Edge.
docker run --name cb_console -d clearblade/cb_console cb_console -checkCert=false -platformPort=9000 -platformURL=http://localhost -messageURL=localhost -messagePort=8903 -isEdge=true
Start Console Pointing to a Platform Instance
Local Platform Instance
The below command runs the ClearBlade Console, pointing to the platform running locally.
docker run --name cb_console -d -p 3000:3000 clearblade/cb_console cb_console -checkCert=false -platformPort=9000 -platformURL=http://localhost -messageURL=localhost -messagePort=8903
Cloud Platform Instance
The console can run pointing to an existing platform running on cloud.
docker run –name cb_console -d -p 3000:3000 clearblade/cb_console cb_console -checkCert=false -platformURL=
Example showing a console pointing to ClearBlade Production Instance
docker run --name cb_console -d -p 3000:3000 clearblade/cb_console cb_console -checkCert=false -platformURL=https://platform.clearblade.com -messageURL=platform.clearblade.com -messagePort=8903