Skip to content

Setup

To use typebuild you first need to create a builder that can handle typescript build files:

$ docker buildx create \
    --name typebuilder \
    --driver-opt "image=rumpl/buildkit:local,network=host" \
    --use \
    --bootstrap

And that's it, you are now ready to start using typebuild.

When done, you can go back to using the default builder with:

$ docker buildx use default