Skip to content

Commit bc14394

Browse files
kylegalbraithgithub-actions[bot]
authored andcommitted
Update docs content from https://github.com/depot/app
1 parent 559f5aa commit bc14394

File tree

1 file changed

+81
-12
lines changed

1 file changed

+81
-12
lines changed

content/overview/faq.mdx

+81-12
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,41 @@ ogTitle: Frequently Asked Questions
44
description: Got a question about how to use Depot? We have answers here.
55
---
66

7-
## How many builds can a project run concurrently?
7+
## Common Container Builds questions
8+
9+
### How many builds can a project run concurrently?
810

911
You can run as many builds concurrently as you want against a single Depot project.
1012

11-
## How do I use Depot with `docker-compose`?
13+
### How do I use Depot with `docker-compose`?
1214

1315
You can use [`depot bake -f docker-compose.yml`](/docs/cli/reference#depot-bake) to build all of the images in your Compose file and then use `docker-compose up` to run the resulting images.
1416

15-
## How do you authenticate with Depot?
17+
### How do you authenticate with Depot?
1618

1719
We have all our authentication options documented for `depot` in our [CLI authentication documentation](/docs/cli/authentication).
1820

19-
## How do I push my images to a private registry?
21+
### How do I push my images to a private registry?
2022

2123
You can use the `--push` flag to push your images to a private registry. Our `depot` CLI uses your local Docker credentials provider. So, any registry you've logged into with `docker login` or similar will be available when running a Depot build. See our guide on [private registries](/docs/container-builds/how-to-guides/private-registries) for more details.
2224

23-
## Can I build Docker images for M1/M2 Macs?
25+
### Can I build Docker images for M1/M2 Macs?
2426

2527
Yes! Depot supports native Arm container builds out of the box. We detect the architecture of the machine requesting a build via `depot build`. If that architecture is Arm, we route the build to a builder running Arm natively. You can build Docker images for M1/M2 Macs and run the resulting image immediately, as it is made specifically for your architecture. See our documentation on [Arm containers](/docs/container-builds/how-to-guides/arm-containers) for more details.
2628

27-
## Can I build multi-platform Docker images?
29+
### Can I build multi-platform Docker images?
2830

2931
Yes! Check out our [integration guide](/docs/container-builds/how-to-guides/arm-containers#what-about-multi-architecture-containers) on how we do it.
3032

31-
## How should I use Depot with a monorepo setup?
33+
### How should I use Depot with a monorepo setup?
3234

3335
If you're building multiple images from a single monorepo, and the builds are lightweight, we tend to recommend using a single project. But we detail some other options in our [monorepo guide](/blog/how-to-use-depot-in-monorepos).
3436

35-
## Can I use Depot with my existing `docker build` or `docker buildx build` commands?
37+
### Can I use Depot with my existing `docker build` or `docker buildx build` commands?
3638

3739
Yes! We have a [`depot configure-docker`](/docs/cli/reference#depot-configure-docker) command that configures Depot as a plugin for the Docker CLI and sets Depot as the default builder for both `docker build` and `docker buildx build`. See our [`docker build` guide](/docs/container-builds/how-to-guides/docker-build) for more details.
3840

39-
## What are these extra files in my registry?
41+
### What are these extra files in my registry?
4042

4143
Registries like Amazon Elastic Container Registry (ECR) and Google Container Registry (GCR) don't accurately display provenance information for a given image. Provenance is a set of metadata that describes how an image was built. This metadata is stored in the registry alongside the image. It's enabled by default in `docker build` and thus by default in `depot build` as well.
4244

@@ -46,7 +48,7 @@ If you would like to clean up the clutter, you can run your build with `--proven
4648
depot build -t <your-registry> --push --provenance=false .
4749
```
4850

49-
## Does Depot support building images in any lazy-pulling compatible format? e.g. estargz, nydus or others?
51+
### Does Depot support building images in any lazy-pulling compatible format? e.g. estargz, nydus or others?
5052

5153
Depot supports building images in any lazy-pulling compatible format. You can build an estargz image by setting the `--output` flag at build time:
5254

@@ -56,7 +58,7 @@ depot build \
5658
.
5759
```
5860

59-
## Does Depot supporting building images with ztsd compression?
61+
### Does Depot supporting building images with ztsd compression?
6062

6163
Depot supports building images with `zstd` compression, a popular compression format to help speed up the launching of containers in AWS Fargate and Kubernetes. You can build an image with zstd compression by setting the `--output` flag at build time:
6264

@@ -66,6 +68,73 @@ depot build \
6668
.
6769
```
6870

69-
## What is an ephemeral build?
71+
### What is an ephemeral build?
7072

7173
We label builds as `ephemeral` when they are launched by GitHub Actions for an open-source pull request. It is a build that did not have access to read from or write to the project cache, to prevent untrusted code from accessing sensitive data.
74+
75+
## Common GitHub Actions questions
76+
77+
### How does Depot integrate with GitHub Actions?
78+
79+
Depot offers managed GitHub Actions runners that can make your workflows up to 3x faster. Our Ultra Runners provide faster compute, 10x faster caching, and support for various runner types including macOS, ARM, and Intel runners.
80+
81+
### What are the benefits of using Depot's GitHub Actions runners?
82+
83+
Depot's GitHub Actions runners offer several advantages:
84+
85+
1. Faster compute: Up to 3x faster than standard GitHub-hosted runners.
86+
2. 10x faster caching: Integrated with Depot's cache orchestration system.
87+
3. Cost-effective: Half the cost of GitHub-hosted runners, billed by the second.
88+
4. Variety of runner types: Support for Intel, ARM, macOS, and even GPU-enabled runners.
89+
5. No concurrency limits: Run as many jobs as you want in parallel.
90+
91+
### How do I start using Depot's GitHub Actions runners?
92+
93+
To use Depot's GitHub Actions runners, you need to:
94+
95+
1. Connect your GitHub organization to Depot.
96+
2. Use the Depot label in your workflow file.
97+
98+
For example, change:
99+
100+
```yaml
101+
runs-on: ubuntu-22.04
102+
```
103+
104+
to:
105+
106+
```yaml
107+
runs-on: depot-ubuntu-22.04
108+
```
109+
110+
### What runner types does Depot offer?
111+
112+
We offer a variety of runner types, including:
113+
114+
- Ubuntu runners (from 2 vCPUs/2 GB RAM to 64 vCPUs/256 GB RAM)
115+
- macOS runners
116+
- ARM runners
117+
- Intel runners
118+
- GPU-enabled runners (only available on the Business plan)
119+
120+
### How does Depot's pricing work for GitHub Actions?
121+
122+
Depot runners are half the cost of GitHub-hosted runners. Each plan comes with a set of included minutes as follows:
123+
124+
- Developer plan: 2,000 minutes included
125+
- Startup plan: 20,000 minutes included, $0.004/minute after
126+
- Business plan: Custom minute allocation
127+
128+
Pricing is based on a per-minute basis, tracked per second, with no enforced one-minute minimum.
129+
130+
### Can I use Depot's GitHub Actions runners with my existing workflows?
131+
132+
Yes, you can easily integrate our runners into your existing GitHub Actions workflows. Simply change the `runs-on` label in your workflow file to use a Depot runner.
133+
134+
### How does Depot's caching system work with GitHub Actions?
135+
136+
Our high-performance caching system is automatically integrated with our GitHub Actions runners. It provides up to 10x faster caching speeds compared to standard GitHub-hosted runners, with no need to change anything in your jobs.
137+
138+
### How can I track usage of Depot's GitHub Actions runners?
139+
140+
We provide detailed usage analytics for GitHub Actions inside of your Organization Usage page. You can track minutes used, job durations, and other metrics across your entire organization.

0 commit comments

Comments
 (0)