Ceetron Cloud Components Remote Model (ug) Server
10K+
Ceetron Cloud Components is now CEETRON Envision for Web
You can find the new Remote Model server here: https://hub.docker.com/repository/docker/ceetron/envision-ug-server
This docker container will no longer be updated.
This docker contains the visualization server part of the distribution of Ceetron Cloud Components (c3).
The server exposes port 8998 (standard C3 port) and includes the two demo models used in the examples.
To start the server, just run the docker with the following command:
docker run -p 8998:8998 -d ceetron/c3-server
To check that is it running, open localhost:8998 in your browser. You should get the following feedback:
Ceetron Cloud Server is alive
To test, also get the ceetron/c3-examples docker with contains the example apps in the c3 distribution ready to run.
To get started, just do:
docker run -p 8998:8998 -d ceetron/c3-server docker run -p 3000:80 -d ceetron/c3-examples
Then open localhost:3000 / 127.0.0.1:3000 in your browser.
To use your own files in the server, you can mount a folder on your host computer to the docker model files (the /usr/TestModels folder in the docker).
docker run -d -p 8998:8998 -v Full-path-to-models:/usr/TestModels ceetron/c3-server
Without a license, the server will only work on a few select demo files. To run on any supported CAE file, please provide your C3 license when you start the docker image:
docker run -d -p 8998:8998 --env CEETRON_CLOUD_COMPONENTS_LICENSE_KEY_A=MY_KEY_A --env CEETRON_CLOUD_COMPONENTS_LICENSE_KEY_B=MY_KEY_B -v Full-path-to-models:/usr/TestModels ceetron/c3-server
For a more detailed description on how to use Ceetron Cloud Components with Docker, please see Using C3 with Docker on ceetron.com.
To develop your own apps or to browse the source code of the demo apps in the ceetron/c3-examples docker, head over to Ceetron Download to grab the lastest version of C3.
If you have any issues with running C3 on Docker or with C3 in general, please do not hesitate to contact us on [email protected].
Content type
Image
Digest
Size
115.5 MB
Last updated
over 4 years ago
docker pull ceetron/c3-server