Docker Build Cloud setup
En esta página
Before you can start using Docker Build Cloud, you must add the builder to your local environment.
Prerequisites#
To get started with Docker Build Cloud, you need to:
- Install Docker Desktop version 4.26.0 or later, or Buildx version 0.37.0 or later.
- Create a cloud builder on the Docker Build Cloud Dashboard.
- When you create the builder, choose a name for it (for example,
default). You will use this name asBUILDER_NAMEin the CLI steps below.
Use Docker Build Cloud without Docker Desktop#
Buildx version 0.37.0 or later includes the
cloud driver. To use Docker Build
Cloud without Docker Desktop, check your installed version:
$ docker buildx version
If your Docker CLI installation doesn't include a compatible Buildx version, install Buildx as a Docker CLI plugin.
Steps#
You can add a cloud builder using the CLI, with the docker buildx create
command, or using the Docker Desktop settings GUI.
{{< tabs >}} {{< tab name="CLI" >}}
- Sign in to your Docker account.
console
$ docker login
- Connect Buildx to your cloud builder.
console
$ docker buildx create --driver cloud <ORG>/<BUILDER_NAME>
Replace <ORG> with the Docker Hub namespace of your Docker organization (or your username if you are using a personal account), and <BUILDER_NAME> with the name you chose when creating the builder in the dashboard.
This registers a local endpoint for the cloud builder named cloud-ORG-BUILDER_NAME.
[!NOTE]
This command connects Buildx to an existing Docker Build Cloud builder. It does not create a new cloud builder. To add a new builder, use the Docker Build Cloud Dashboard.
[!NOTE]
If your organization is
acmeand you named your builderdefault, use:
console $ docker buildx create --driver cloud acme/default
{{< /tab >}} {{< tab name="Docker Desktop" >}}
-
Sign in to your Docker account using the Sign in button in Docker Desktop.
-
Open the Docker Desktop settings and navigate to the Builders tab.
-
Under Available builders, select Connect to builder.
{{< /tab >}} {{< /tabs >}}
The builder has native support for the linux/amd64 and linux/arm64
architectures. This gives you a high-performance build cluster for building
multi-platform images natively.
Firewall configuration#
To use Docker Build Cloud behind a firewall, ensure that your firewall allows traffic to the following addresses:
- 3.211.38.21
- https://auth.docker.io
- https://build-cloud.docker.com
- https://hub.docker.com
What's next#
- See Building with Docker Build Cloud for examples on how to use Docker Build Cloud.
- See Use Docker Build Cloud in CI for examples on how to use Docker Build Cloud with CI systems.