Try out Kadeck Teams on a local machine
Replace {latest version} with the actual latest released version.
- docker pull xeotek/kadeck:{latest version}
Free version
Use the following command to run Kadeck Teams Free:
- docker run -p 80:80 -e xeotek_kadeck_free="<your_email_address>" xeotek/kadeck:{latest version}
If your machine is on Apple Silicon, use the following command, which defines the platform:
- docker run --platform linux/amd64 -p 80:80 -e xeotek_kadeck_free="<your_email_address>" xeotek/kadeck:{latest version}
Kadeck Teams Enterprise
The cluster can be started with the command below (the image doesn't need to be download first):
- docker run -p 80:80 -e xeotek_kadeck_teamid="my team id and random chars" xeotek_kadeck_secret="my team secret" xeotek/kadeck:{latest version}
If your machine is on Apple Silicon, use the following command, which defines the platform:
- docker run --platform linux/amd64 -p 80:80 -e xeotek_kadeck_teamid="my team id and random chars" xeotek_kadeck_secret="my team secret" xeotek/kadeck:{latest version}
Related Articles
Local cluster
This article describes how to set up and connect to the local cluster with KaDeck. What is the local cluster functionality? The local cluster, previously known as "embedded cluster", allows you to start up an Apache Kafka broker (and Zookeeper) ...
Managing Licenses in Kadeck Teams Enterprise
Introduction In this guide, we'll walk you through the process of assigning licenses to your team members and help you understand how to maintain control over deployment. Confidentiality of Teamid and Secret Upon purchasing Kadeck Teams Enterprise, ...
Alert notifications
We are excited to introduce Kadeck's new Alerting Module, which makes monitoring and troubleshooting Apache Kafka infrastructure easier than ever and raises the bar in the industry. The new alerting module includes two new settings pages: Alerts ...
Configure a Kadeck cluster setup
This article describes how to configure multiple Kadeck instances that run as a cluster. Define master nodes First define a list of master nodes. In this example, we will configure 3 Kadeck instances running as a minimum (to handle 2 simultaneous ...
Download Kadeck Teams image to a private repository
Replace {latest version} with the actual latest released version. On a server with internet connection, use the save command to export the image: docker save xeotek/kadeckweb:{latest version} > kadeckweb.tar Optionally, the file can be compressed ...