Skip to content

quincy7386/queryPacks

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

Make sure you have installed the Docker Desktop from here.

After you pull down this repo, you need to edit the var/www/cgi-bin/credentials.psc file and add your credentials, and ORG key. The API key needs to be of type 'Custom', and in this format: 'API Secret Key/API ID'. The var/www/cgi-bin/credentials.psc file should look similar to this:

[cblo]
cbloUrl=https://defense-prod05.conferdeploy.net
cbloToken=111111111111111111111111/22222222222
orgKey=12345678

Next you will build the image for the container, and you will only need to do this once, which will take a few minutes to complete. You might see some errors, but they can be ignored for the most part. Here is the build command:

docker build . -t ubuntu-18.04

In the last two rows of messages you will find the image ID:

Removing intermediate container be9fd0ae4dc0
 ---> dd8a05f1e433
Step 18/18 : CMD /usr/sbin/apache2ctl -D FOREGROUND
 ---> Running in e17a5a699f0c
Removing intermediate container e17a5a699f0c
 ---> adea87282549
Successfully built adea87282549
Successfully tagged ubuntu-18.04:latest

Here it is adea87282549. Copy this is it will be used to start the container. After this point, any time you want to run this demo all you will have to do is run the following command:

docker run -d -p 8080:80 <IMAGE_ID>

or in this case:

docker run -d -p 8080:80 adea87282549

To ensure that the container is running:

docker container ls

and you should see something like:

CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS           PORTS                  NAMES
a641cc3a84e9        adea87282549        "/bin/sh -c '/usr/sb…"   13 hours ago        Up 13 hours         0.0.0.0:8080->80/tcp   elastic_vaughan

Now you can navigate to http://localhost:8080 and find the demo UI.

When entering the 'Hostname' field in the form, this is the device name on the Inventory page of the VMware Carbon Black Cloud.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages