UNCLASSIFIED

README.md 1.04 KB
Newer Older
Mark Hermeling's avatar
Mark Hermeling committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
#CodeSonar 5.4p0

This is a default image that provides the CodeSonar Hub service. Data volumes can 
be mounted such that data persists. A license from GrammaTech is required to be
able to use the hub and provide scans. Contact sales@grammatech.com for access
to a license.

#Build the Image
Build the image using the standard
  'docker build -t codesonar-hub .'

#Running the Container
Suggested use is to run the container using:
'docker volume create hub
docker run -d --name hub -p 8080:7340 -v hub:/home/codesonar/hub codesonar-hub'

This will put all data in the hub volume and route localhost:8080 to the hub. 
The hub will have default password for the 'Administrator account' set to 
'HubSecretPasswd' at creation-time, which can be changed by 
'--build-arg HUB_DEFAULT_PWD=YourOwnSecretPWD' during the container build step.
Please change the default password after initial hub creation. This is also the
time to install the run-time license.

#Resources
CPU Min/Recommended 2/8+
RAM Min/Recommended/Max 2/8/Unlimited

#Ports
Application is using port 7340
Joshua Eason's avatar
Joshua Eason committed
30