You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/container-builds/troubleshooting.mdx
+50Lines changed: 50 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,6 +161,27 @@ If you're hitting Docker Hub rate limits, you can authenticate with a Docker Hub
161
161
162
162
To authenticate, create a Docker Hub account if you don't have one, then set up authentication in your build environment.
163
163
164
+
## Error: `failed to load ref`
165
+
166
+
If you encounter a warning during container builds similar to:
167
+
168
+
```text
169
+
ERROR: failed to load ref: 05e0j9uordhz0b72g9h3e32an: not found
170
+
```
171
+
172
+
This error indicates that BuildKit couldn't find a cached layer that it expected to exist. While this appears as an error in the logs, BuildKit typically recovers by rebuilding the missing layer, so your build should still complete successfully.
173
+
174
+
### How to resolve
175
+
176
+
If you observe this warning frequently, increase the cache storage allocation:
177
+
178
+
1. Log in to your [Depot Dashboard](https://depot.dev).
179
+
2. Select the project and click **Settings**.
180
+
3. Increase one or both of **Cache Storage Policy** and **Cache Retention Policy** values.
181
+
4. Monitor your builds to verify if the fix worked.
182
+
183
+
If you continue to see this warning after adjusting your cache settings, [reach out to support](/help) with your project ID and build details.
184
+
164
185
## Error: `.git directory not found in build context`
165
186
166
187
When using Depot's `build-push-action` for Docker builds, you might encounter an error such as:
@@ -207,6 +228,35 @@ For more information, refer to the [Docker documentation on keeping the git dire
207
228
208
229
If you continue to see git-related errors after adding this build argument, verify that your checkout step is fetching the necessary git history and [reach out to support](/help) if needed.
209
230
231
+
## Error: `cannot merge resource due to conflicting Schema URL`
232
+
233
+
When running `depot build` or `depot bake`, you may encounter an error message like:
234
+
235
+
```text
236
+
Error: cannot merge resource due to conflicting Schema URL
237
+
```
238
+
239
+
This error is typically caused by conflicting OpenTelemetry (OTEL) environment variables set in your local build environment. These environment variables can interfere with Depot's internal telemetry system.
240
+
241
+
### How to resolve
242
+
243
+
Set the environment variable `DEPOT_DISABLE_OTEL=1` in your environment before running `depot build`. This variable disables the embedded OpenTelemetry tracing in Depot CLI. Use this to prevent conflicts when your environment has existing OpenTelemetry instrumentation:
244
+
245
+
```bash
246
+
export DEPOT_DISABLE_OTEL=1
247
+
depot build .
248
+
```
249
+
250
+
Alternatively, you can set it inline with your build command:
251
+
252
+
```bash
253
+
DEPOT_DISABLE_OTEL=1 depot build .
254
+
```
255
+
256
+
If you're using a CI/CD environment, add `DEPOT_DISABLE_OTEL=1` to your environment variables for the build step.
257
+
258
+
If the error persists after setting this environment variable, [reach out to support](/help) with your project ID and build details.
259
+
210
260
## Error: `remote error: tls: bad record MAC`
211
261
212
262
When building container images, you may encounter an error like:
Copy file name to clipboardExpand all lines: content/faq.mdx
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -138,3 +138,11 @@ Our high-performance caching system is automatically integrated with our GitHub
138
138
### How can I track usage of Depot's GitHub Actions runners?
139
139
140
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.
141
+
142
+
### Can I use custom runner images with pre-installed software?
143
+
144
+
Yes, custom runner AMIs with pre-installed software are available on the Business plan. This is useful if you need specific tools, dependencies, or configurations that aren't included in our standard runner images.
145
+
146
+
With a custom runner AMI, we maintain a separate image specifically for your organization with your required software pre-installed. This can significantly reduce workflow execution time for dependencies that take time to install.
147
+
148
+
To request a custom runner AMI, please [contact our team](mailto:[email protected]) with details about your requirements.
Copy file name to clipboardExpand all lines: content/github-actions/overview.mdx
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,10 @@ We track builds by the second and only bill for whole minutes used at the end of
50
50
51
51
We can run our optimized runners in our cloud or your AWS account for additional security and compliance. We also support dedicated infrastructure and VPC peering options for something more custom to your needs.
52
52
53
+
### Custom runner images
54
+
55
+
For Business plan customers, we can create custom runner AMIs with pre-installed software tailored to your specific requirements. This is useful if you need specific tools, dependencies, or configurations that aren't included in our standard runner images. Contact us at [[email protected]](mailto:[email protected]) to discuss your needs.
56
+
53
57
### Integrates with Docker image builds
54
58
55
59
If you use Depot for faster Docker image builds via our [remote container builds](/docs/container-builds/overview), your BuildKit builder runs right next to your managed GitHub Action runner, allowing for faster CI builds by mimizing network latency and data transfer.
_Note: We do our best to keep our images in sync with GitHub's, but there may be a slight delay between when GitHub updates their images and when we update ours. If you need a specific version of a tool or software, please check the links above to see if it's available in the image you're using._
140
+
141
+
## Custom runner images
142
+
143
+
If you need specific software pre-installed that isn't included in our standard runner images, custom runner AMIs are available on the Business plan. This is particularly useful for:
144
+
145
+
- Large dependencies that take significant time to install
0 commit comments