Install as Docker
Docker is an easy-to-install application for your environment, enabling you to build and share containerized applications and microservices. You can download and install Docker on multiple platforms from the official website: Get Docker. Looking for more information? Check our Documentation.
Open your terminal and execute the following command to pull the Bright CLI Docker image from the Docker Hub:
docker pull brightsec/cli
The terminal output should look like the following:
$ docker pull brightsec/cli
Using default tag: latest
latest: Pulling from brightsec/cli
ddad3d7c1e96: Already exists
ff2036d54c0c: Pull complete
a5c80333dc0f: Pull complete
b9eb7f92caa6: Pull complete
7c22ofdfc645: Pull complete
Digest: sha256: 31ff955245706b8e6a3ccaa7cf44c1edc66c7ae659dd1d308bacf11980b0848d
Status: Downloaded newer image for brightsec/cli: latest
docker.io/brightsec/cli: latest
To verify a successful installation, open a Command Prompt or Powershell and execute the following command:
docker run --rm -it --name bright-cli brightsec/cli repeater --version
If the CLI's version information is displayed, the installation was successful.
To have the possibility to diagnose Repeater's connections, use this command to install Bright CLI:
docker run --rm --cap-add=NET_RAW --cap-add=NET_ADMIN -it brightsec/cli repeater --token Test_token --id Test_ID --hostname https://test_hostname.com/
Troubleshooting
For more details, see the troubleshooting article.
Updated 4 months ago