⚡ Now available: Remote agent sandboxes for Claude Code
⚡ Now available: Remote agents
GitHub Actions Benchmark
Moby
moby/mobyMoby is an open-source project created by Docker to enable and accelerate software containerization. It provides a "Lego set" of toolkit components, the framework for assembling them into custom container-based systems, and a place for all container enthusiasts and professionals to experiment and exchange ideas.
With
depot build
, the past 10 runs were22% faster
saving a total of
1m 20s
compared to
docker build
.About the benchmark
For every commit to moby/moby, GitHub Actions runs one workflow job building the project with the
docker/build-push-action
action and caching enabled and one workflow job building the project with depot build
. The time each job takes is recorded and visualized here.Last 10 GitHub Actions Runs
Merge pull request #50995 from thaJeztah/rm_build_ostype
Depot
24s / 49% fasterDocker
47sMerge pull request #50994 from thaJeztah/rm_test_utils
Depot
24s / 25% fasterDocker
32sMerge pull request #50931 from vvoland/gha-label-modules
Depot
26s / 43% fasterDocker
46sMerge pull request #50991 from thaJeztah/move_exec_inspect
Depot
19s / 24% fasterDocker
25sMerge pull request #50989 from thaJeztah/remove_KernelMemory
Depot
30s / 3% fasterDocker
31sMerge pull request #50929 from robmry/mac_ip_vlan_gateway_config
Depot
28s / 10% fasterDocker
31sMerge pull request #50987 from thaJeztah/version_constraints
Depot
41s / 11% fasterDocker
46sMerge pull request #50978 from thaJeztah/mv_exec_options
Depot
32s / 3% slowerDocker
31sMerge pull request #50961 from robmry/windows_hns_network_name
Depot
30s / 12% fasterDocker
34sMerge pull request #50982 from thaJeztah/info_backcompat
Depot
33s / 25% fasterDocker
44sDocker Workflow
jobs:
benchmark-docker:
name: Build with Docker
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
- uses: docker/build-push-action@v2
with:
tags: depot/benchmark-moby:benchmark
cache-from: type=gha
cache-to: type=gha,mode=max
View workflow source benchmark-docker:
name: Build with Docker
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
- uses: docker/build-push-action@v2
with:
tags: depot/benchmark-moby:benchmark
cache-from: type=gha
cache-to: type=gha,mode=max
Depot Workflow
jobs:
benchmark-depot:
name: Build with Depot
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: depot/setup-action@v1
- uses: depot/build-push-action@v1
with:
tags: depot/benchmark-moby:benchmark
View workflow source benchmark-depot:
name: Build with Depot
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: depot/setup-action@v1
- uses: depot/build-push-action@v1
with:
tags: depot/benchmark-moby:benchmark
Your builds have never been this quick.
Get started