Skip to content

Docker Images

PETER.NIGHTINGALE edited this page Aug 19, 2021 · 16 revisions

References: New Application Setup, Install Notes

Repository

Location:

Images:


Demo Image


The demo image entrypoint will first run the install, then starts the agent on port 9011 with the agent host portal accessible. 9021 is optionally exported (default port for csasp-verify-service).

#!/bin/bash

mkdir install;
docker run \
	--rm \
	--port=9011:9011 --port=9013:9013 --port=9021:9021 \
	--env csapFqdn=$(hostname --long) \
	csapplatform/csap:demo

Installer Image


Run the commands shown below; after extracting the csap-host.zip, refer to Install Notes and New Application Setup to complete the install

#!/bin/bash

mkdir install;
docker run \
	--rm \
	--volume=$(pwd)/install:/transfer \
	csapplatform/csap:installer 
	
#
# run new application commands to extract installer
#
yum --assumeyes install wget unzip ; systemctl restart chronyd.service
unzip  -j csap-host-*.zip csap-platform/packages/csap-package-linux.zip &&  unzip -qq csap-package-linux.zip installer/*

#
# run installer notes commands
#

installer/install.sh -noPrompt \
	-installCsap "default" \
	-csapDefinition default
		
Clone this wiki locally