Getting the Image
TBD
Loading the Image
docker load < path/to/image.tgz
Confirm the image loaded successfully:
docker images
Note the image ID (or use the image name/tag in the steps below).
Generating and Running the Standalone Launcher
Extract the bootstrap script from the image, then run it:
Bash
img=$(docker images | grep -i clusterminder | head -1 | awk '{print $3}')
docker run --rm "$img" ./cm/get_standalone.sh > run_clusterminder_standalone.sh
chmod +x run_clusterminder_standalone.sh
./run_clusterminder_standalone.sh --image_name "$img" --container_name "clusterminder"
For the list of supported data source types and devices, refer to Supported Data Sources.
Last updated: