Docs Self-Managed Reference rpk Commands rpk container rpk container start This is documentation for Self-Managed v23.3. To view the latest available version of the docs, see v24.2. rpk container start Start a local container cluster. Usage rpk container start [flags] Example If you’re following QuickStart - Deploy Redpanda to Docker with Three Nodes, you can run rpk container start -n 3 to start your containers: $ rpk container start -n 3 Starting cluster Waiting for the cluster to be ready... Cluster started! NODE-ID STATUS KAFKA-ADDRESS ADMIN-ADDRESS PROXY-ADDRESS 0 running 127.0.0.1:45841 127.0.0.1:40705 127.0.0.1:36875 1 running 127.0.0.1:42467 127.0.0.1:38959 127.0.0.1:37665 2 running 127.0.0.1:44941 127.0.0.1:46047 127.0.0.1:45783 You can use rpk to interact with this cluster. E.g: rpk cluster info --brokers 127.0.0.1:45841,127.0.0.1:42467,127.0.0.1:44941 You may also set an environment variable with the comma-separated list of broker addresses: export REDPANDA_BROKERS="127.0.0.1:45841,127.0.0.1:42467,127.0.0.1:44941" rpk cluster info Flags Value Type Description -h, --help - Help for start. --image string An arbitrary container image to use (default redpandadata/redpanda:v23.3.1). --no-profile - If true, rpk will not create an rpk profile after creating a cluster. --pull - Force pull the container image used. -n, --nodes - uint The number of brokers to start (default 1). --retries - uint The amount of times to check for the cluster before considering it unstable and exiting. (default 10). --config string Redpanda or rpk config file; default search paths are /var/lib/redpanda/.config/rpk/rpk.yaml, $PWD/redpanda.yaml, and /etc/redpanda/redpanda.yaml. -X, --config-opt stringArray Override rpk configuration settings. See rpk -X or execute rpk -X help for inline detail or rpk -X list for terser detail. --profile string Profile to use. See rpk profile for more details. -v, --verbose - Enable verbose logging. Back to top × Simple online edits For simple changes, such as fixing a typo, you can edit the content directly on GitHub. Edit on GitHub Or, open an issue to let us know about something that you want us to change. Open an issue Contribution guide For extensive content updates, or if you prefer to work locally, read our contribution guide . Was this helpful? thumb_up thumb_down group Ask in the community mail Share your feedback group_add Make a contribution rpk container purge rpk container status