Remove an existing Broker Client
If you have a running Broker Client for the same Organization and the same Integration, stop and remove it before you set up a new Broker Client for the Code Agent. Since the Broker Client needs to communicate with the Code Agent, and this communication is configured in the setup commands of the Broker Client container, you cannot use an existing Broker Client container for the Code Agent operation.
To find out if you have a running Broker Client, use the Docker Process Status command, which provides a list of all the containers that are up and running on a machine.
Run the following:
docker ps
If you have a running Broker Client, your output is similar to the following:
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
6eab097879cc snyk/broker:github-com "broker --verbose" 18 hours ago Up 18 hours 0.0.0.0:8001->8000/tcp suspicious_banzai
To remove the Broker Client container, run the following:
docker rm -f <Broker_Client_container_ID_or_name)
where container_ID_or_name
is the ID or name of the container of the running Broker Client. You can obtain these details by using the docker ps
command, for example:

Last updated
Was this helpful?