Starts the BuildKit builder container. CPU and memory limits can be set for the builder.
Usage
container builder start [--cpus <cpus>] [--memory <memory>] [--debug]
Options
Number of CPUs to allocate to the builder container
Amount of builder container memory (1MiByte granularity), with optional K, M, G, T, or P suffix
Examples
# start the builder with default resources (2 CPUs, 2048MB memory)
container builder start
# start the builder with custom CPU allocation
container builder start --cpus 4
# start the builder with custom memory and CPU limits
container builder start --cpus 4 --memory 4G