diff --git a/content/build/hydrobuild.md b/content/build/hydrobuild.md index 5649f866dd..ee03644b56 100644 --- a/content/build/hydrobuild.md +++ b/content/build/hydrobuild.md @@ -80,18 +80,20 @@ builder using the `cloud` driver. 2. Create a builder that uses the `cloud` driver. ```console - $ docker buildx create --driver cloud --name hydrobuild /default + $ docker buildx create --driver cloud /default ``` Replace `` with the Docker organization. + This creates a builder named `cloud--default`. + ## Use Hydrobuild from the CLI To run a build using Hydrobuild, invoke a build command and specify the name of the builder using the `--builder` flag. ```console -$ docker buildx build --builder hydrobuild --tag / . +$ docker buildx build --builder cloud--default --tag / . ``` > **Note** @@ -106,7 +108,7 @@ $ docker buildx build --builder hydrobuild --tag / . To build a multi-platform image and push it to a registry: ```console -$ docker buildx build --builder hydrobuild \ +$ docker buildx build --builder cloud--default \ --platform linux/amd64,linux/arm64 \ --tag / \ --push . @@ -131,7 +133,7 @@ If you want to use Hydrobuild by default, you can run the following command to make it the selected builder: ```console -$ docker buildx use hydrobuild --global +$ docker buildx use cloud--default --global ``` > **Note** @@ -418,7 +420,7 @@ If you want to stop using Hydrobuild, and remove it from your system, remove the builder using the `docker buildx rm` command. ```console -$ docker buildx rm hydrobuild +$ docker buildx rm cloud--default ``` This doesn't deprovision the builder backend, it only removes the builder from