Skip to content

Commit 559f5aa

Browse files
Merge pull request #105 from depot/docs-sync-updates
Update content from depot/app
2 parents 60123df + d873188 commit 559f5aa

40 files changed

+85
-85
lines changed

content/cache/authentication.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Depot Cache supports authenticating with user tokens and organization tokens. Ad
1818

1919
For specific details on how to configure your build tools to authenticate with Depot Cache, refer to the following guides:
2020

21-
- [Bazel](/docs/cache/bazel)
22-
- [Gradle](/docs/cache/gradle)
23-
- [Pants](/docs/cache/pants)
24-
- [sccache](/docs/cache/sccache)
25-
- [Turborepo](/docs/cache/turbo)
21+
- [Bazel](/docs/cache/reference/bazel)
22+
- [Gradle](/docs/cache/reference/gradle)
23+
- [Pants](/docs/cache/reference/pants)
24+
- [sccache](/docs/cache/reference/sccache)
25+
- [Turborepo](/docs/cache/reference/turbo)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

content/cli/reference.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ If you want to build a specific target in the bake file, you can specify it in t
101101
depot bake -f docker-bake.hcl original
102102
```
103103

104-
You can also save all of the targets built in a bake or compose file to the [ephemeral registry](/docs/guides/ephemeral-registry) for later use with the `--save` flag:
104+
You can also save all of the targets built in a bake or compose file to the [ephemeral registry](/docs/container-builds/how-to-guides/ephemeral-registry) for later use with the `--save` flag:
105105

106106
```shell
107107
depot bake -f docker-bake.hcl --save

content/guides/arm-containers.mdx renamed to content/container-builds/how-to-guides/arm-containers.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Depot removes emulation altogether.
1212

1313
Depot is a remote Docker container build service that orchestrates optimized BuildKit builders on native CPUs for Intel (x86) and Arm (arm64).
1414

15-
When a Docker image build is routed to Depot either via [`depot build`](/docs/cli/reference#depot-build) or [`docker build`](/docs/guides/docker-build#how-to-use-depot-with-docker), we launch optimized builders for each architecture requested with a persistent layer cache attached to them. Each builder has 16 CPUs, 32GB of memory, and at least 50GB of fast NVMe cache SSDs.
15+
When a Docker image build is routed to Depot either via [`depot build`](/docs/cli/reference#depot-build) or [`docker build`](/docs/container-builds/how-to-guides/docker-build#how-to-use-depot-with-docker), we launch optimized builders for each architecture requested with a persistent layer cache attached to them. Each builder has 16 CPUs, 32GB of memory, and at least 50GB of fast NVMe cache SSDs.
1616

1717
## How to build Docker images for Arm CPUs like M1/M2 MacBooks or AWS Graviton
1818

@@ -32,14 +32,14 @@ docker build --platform linux/arm64 .
3232

3333
We have integration guides for most of the CI providers:
3434

35-
- [Bitbucket Pipelines](../integrations/bitbucket-pipelines)
36-
- [Buildkite](../integrations/buildkite)
37-
- [CircleCI](../integrations/circleci)
38-
- [GitHub Actions](../integrations/github-actions)
39-
- [GitLab CI](../integrations/gitlab-ci)
40-
- [Google Cloud Build](../integrations/google-cloud-build)
41-
- [Jenkins](../integrations/jenkins)
42-
- [Travis CI](../integrations/travis-ci)
35+
- [Bitbucket Pipelines](/docs/container-builds/reference/bitbucket-pipelines)
36+
- [Buildkite](/docs/container-builds/reference/buildkite)
37+
- [CircleCI](/docs/container-builds/reference/circleci)
38+
- [GitHub Actions](/docs/container-builds/reference/github-actions)
39+
- [GitLab CI](/docs/container-builds/reference/gitlab-ci)
40+
- [Google Cloud Build](/docs/container-builds/reference/google-cloud-build)
41+
- [Jenkins](/docs/container-builds/reference/jenkins)
42+
- [Travis CI](/docs/container-builds/reference/travis-ci)
4343

4444
## How to build multi-platform Docker images
4545

content/guides/continuous-integration.mdx renamed to content/container-builds/how-to-guides/continuous-integration.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ Depot provides a remote Docker build service that makes the image build process
1010

1111
By routing the image build step of your CI to Depot, you can complete the image build up to 40x faster than you could in your generic CI provider. Saving you build minutes in your existing CI provider and, more importantly, saving you developer time waiting for the build to finish.
1212

13-
The `depot build` command is a drop-in replacement for `docker build` and `docker buildx build`. Alternatively, you can [configure your local Docker CLI to use Depot as the default builder](/docs/guides/docker-build). Depot launches remote builders for both native Intel & Arm CPUs with 16 CPUs, 32 GB of memory, and a 50 GB persistent NVMe cache SSD.
13+
The `depot build` command is a drop-in replacement for `docker build` and `docker buildx build`. Alternatively, you can [configure your local Docker CLI to use Depot as the default builder](/docs/container-builds/how-to-guides/docker-build). Depot launches remote builders for both native Intel & Arm CPUs with 16 CPUs, 32 GB of memory, and a 50 GB persistent NVMe cache SSD.
1414

1515
Running `depot` in a continuous integration environment is a great way to get fast and consistent builds with any CI provider. See below for documentation on integrating Depot with your CI provider.
1616

1717
## Providers
1818

19-
- [AWS CodeBuild](../integrations/aws-codebuild)
20-
- [Bitbucket Pipelines](../integrations/bitbucket-pipelines)
21-
- [Buildkite](../integrations/buildkite)
22-
- [CircleCI](../integrations/circleci)
23-
- [GitHub Actions](../integrations/github-actions)
24-
- [GitLab CI](../integrations/gitlab-ci)
25-
- [Google Cloud Build](../integrations/google-cloud-build)
26-
- [Jenkins](../integrations/jenkins)
27-
- [Travis CI](../integrations/travis-ci)
19+
- [AWS CodeBuild](/docs/container-builds/reference/aws-codebuild)
20+
- [Bitbucket Pipelines](/docs/container-builds/reference/bitbucket-pipelines)
21+
- [Buildkite](/docs/container-builds/reference/buildkite)
22+
- [CircleCI](/docs/container-builds/reference/circleci)
23+
- [GitHub Actions](/docs/container-builds/reference/github-actions)
24+
- [GitLab CI](/docs/container-builds/reference/gitlab-ci)
25+
- [Google Cloud Build](/docs/container-builds/reference/google-cloud-build)
26+
- [Jenkins](/docs/container-builds/reference/jenkins)
27+
- [Travis CI](/docs/container-builds/reference/travis-ci)
File renamed without changes.

0 commit comments

Comments
 (0)