- Notifications
You must be signed in to change notification settings - Fork440
Super simple build framework with fast, repeatable builds and an instantly familiar syntax – like Dockerfile and Makefile had a baby.
License
earthly/earthly
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Please note that Earthly is no longer actively maintained.Read more.
🔁 Repeatable Builds -Write builds once, and run them anywhere – on your laptop, remote, and in any CI.
❤️ Super Simple -Instantly recognizable syntax – like Dockerfile and Makefile had a baby.
🛠 Compatible with Every Language, Framework, and Build Tool -If it runs on Linux, it runs on Earthly.
🏘 Great for Monorepos and Polyrepos -Organize your build logic however makes the most sense for your project.
💨 Fast Builds -Build caching and parallel execution makes builds fast automatically.
♻️ Reuse, Don't Repeat -Never write the same code in multiple builds again.
🌎Earthly is a versatile, approachable CI/CD framework that runs every pipeline inside containers, giving you repeatable builds that you write once and run anywhere. It has a super simple, instantly recognizable syntax that is easy to write and understand – like Dockerfile and Makefile had a baby. And it leverages and augments popular build tools instead of replacing them, so you don’t have to rewrite all your builds no matter what languages you use.
- Why use Earthly?
- Where Does Earthly Fit?
- How Does It Work?
- Installation
- Quick Start
- Features
- FAQ
- Contributing
- Licensing
Earthly runs all builds in containers, making them self-contained, isolated, repeatable, and portable. This allows for faster iteration on build scripts and easier debugging when something goes wrong – no moregit commit -m "try again". When you write a build, you know it will execute correctly no matter where it runs – your laptop, a colleague’s laptop, or any CI. You don’t have to configure language-specific tooling, install additional dependencies, or complicate your build scripts to ensure they are compatible with different OSs. Earthly gives you consistent, repeatable builds regardless of where they run.
Earthly’s syntax is easy to write and understand. Most engineers can read an Earthfile instantly, without prior knowledge of Earthly. We combined some of the best ideas from Dockerfiles and Makefiles into one specification – like Dockerfile and Makefile had a baby.
Earthly works with the compilers and build tools you use. If it runs on Linux, it runs on Earthly. And you don’t have to rewrite your existing builds or replace yourpackage.json,go.mod,build.gradle, orCargo.toml files. You can use Earthly as a wrapper around your existing tooling and still get Earthly’s repeatable builds, parallel execution, and build caching.
Earthly is great for both monorepos and polyrepos. You can split your build logic across multiple Earthfiles, placing some deeper inside the directory structure or even in other repositories. Referencing targets from other Earthfiles is easy regardless of where they are stored. So you can organize your build logic however makes the most sense for your project.
Earthly automatically executes build targets in parallel and makes maximum use of cache. This makes builds fast. Earthly also has powerful shared caching capabilities that speed up builds frequently run across a team or in sandboxed environments, such as Earthly Satellites, GitHub Actions, or your CI.
If your build has multiple steps, Earthly will:
- Build a directed acyclic graph (DAG).
- Isolate execution of each step.
- Run independent steps in parallel.
- Cache results for future use.
Never have to write the same code in multiple builds again. With Earthly, you can reuse targets, artifacts, and images across multiple Earthfiles, even ones in other repositories, in a single line. Earthly is cache-aware, based on the individual hashes of each file, and has shared caching capabilities. So you can create a vast and efficient build hierarchy that only executes the minimum required steps.
Earthly is meant to be used both on your development machine and in CI. It runs on top of your CI/CD platform (such asJenkins,Circle CI,GitHub Actions, andGitLab CI/CD). Earthly provides the benefits of a modern build automation system wherever it runs – such as caching and parallelism. It is a glue layer between language-specific build tooling (like maven, gradle, npm, pip, go build) and CI, working like a wrapper around your build tooling and build logic that isolates build execution from the environments they run in.
In short:containers,layer caching, andcomplex build graphs!
Earthly executes builds in containers, where execution is isolated. The dependencies of the build are explicitly specified in the build definition, thus making the build self-sufficient.
We use a target-based system to help users break up complex builds into reusable parts. Nothing is shared between targets other than clearly declared dependencies. Nothing shared means no unexpected race conditions. In fact, the build is executed in parallel whenever possible, without any need for the user to take care of any locking or unexpected environment interactions.
ℹ️ NoteEarthfiles might seem very similar to Dockerfile multi-stage builds. In fact, thesame technology is used underneath. However, a key difference is that Earthly is designed to be a general-purpose build system, not just a Docker image specification. Read more abouthow Earthly is different from Dockerfiles.
To build from source, check thecontributing page.
Here are some resources to get you started with Earthly
See also thefull documentation.
Reference pages
# EarthfileVERSION0.8FROMgolang:1.15-alpine3.13RUNapk--update--no-cache add gitWORKDIR/go-exampleall: BUILD+lint BUILD+dockerbuild: COPYmain.go . RUNgo build-o build/go-example main.goSAVE ARTIFACT build/go-exampleAS LOCAL build/go-examplelint: RUNgo get golang.org/x/lint/golint COPYmain.go . RUNgolint-set_exit_status ./...docker: COPY+build/go-example . ENTRYPOINT["/go-example/go-example"] SAVE IMAGEgo-example:latest
// main.gopackage mainimport"fmt"funcmain() {fmt.Println("hello world")}
Invoke the build usingearthly +all.
Examples for other languages are available in theexamples dir.
Whenever possible, Earthly automatically executes targets in parallel.
Build for multiple platforms in parallel.
VERSION0.8all: BUILD\--platform=linux/amd64\--platform=linux/arm64\--platform=linux/arm/v7\--platform=linux/arm/v6\+buildbuild:FROMalpine:3.18 CMD["uname","-m"] SAVE IMAGEmultiplatform-image
No need to ask your team to installprotoc, a specific version of Python, Java 1.6, or the .NET Core ecosystem. Install once in your Earthfile, and it works for everyone. Or even better, you can just make use of the rich Docker Hub ecosystem.
VERSION0.8FROMgolang:1.15-alpine3.13WORKDIR/proto-exampleproto:FROMnamely/protoc-all:1.29_4 COPYapi.proto /defsRUN--entrypoint---f api.proto-l goSAVE ARTIFACT ./gen/pb-go /pbAS LOCAL pbbuild: COPYgo.mod go.sum . RUNgo mod download COPY+proto/pb pb COPYmain.go ./ RUNgo build-o build/proto-example main.go SAVE ARTIFACTbuild/proto-example
See fullexample code.
Earthly can be used to reference and build targets from other directories or even other repositories. For example, if we wanted to buildan example target from thegithub.com/earthly/earthly repository, we could issue
# Try it yourself! No need to clone.earthly github.com/earthly/earthly/examples/go:main+docker# Run the resulting image.docker run --rm earthly/examples:go
Use+ to reference other targets and create complex build inter-dependencies.
Examples
Same directory (same Earthfile)
BUILD+some-targetFROM+some-targetCOPY+some-target/my-artifact ./
Other directories
BUILD./some/local/path+some-targetFROM./some/local/path+some-targetCOPY./some/local/path+some-target/my-artifact ./
Other repositories
BUILDgithub.com/someone/someproject:v1.2.3+some-targetFROMgithub.com/someone/someproject:v1.2.3+some-targetCOPYgithub.com/someone/someproject:v1.2.3+some-target/my-artifact ./
Secrets are never stored within an image's layers and they are only available to the commands that need them.
earthlyset /user/github/token'shhh...'
release:RUN--push --secretGITHUB_TOKEN=user/github/token github-release upload file.bin
Dockerfiles were designed for specifying the make-up of Docker images and that's where Dockerfiles stop. Earthly takes some key principles of Dockerfiles (like layer caching) but expands on the use cases. For example, Earthly can output regular artifacts, run unit and integration tests, and create several Docker images at a time - all outside the scope of Dockerfiles.
It is possible to use Dockerfiles in combination with other technologies (e.g., Makefiles or bash files) to solve such use cases. However, these combinations are difficult to parallelize, challenging to scale across repositories as they lack a robust import system, and often vary in style from one team to another. Earthly does not have these limitations as it was designed as a general-purpose build system.
For example, Earthly introduces a richer target, artifact, and imagereferencing system, allowing for better reuse in complex builds spanning a single large repository or multiple repositories. Because Dockerfiles are only meant to describe one image at a time, such features are outside the scope of applicability of Dockerfiles.
Check out theEarthfile reference doc page. It has all the commands there and specifies which commands are the same as Dockerfile commands and which are new.
Yes! You can use the commandFROM DOCKERFILE to inherit the commands in an existing Dockerfile.
build:FROMDOCKERFILE . SAVE IMAGEsome-image:latest
You may also optionally port your Dockerfiles to Earthly entirely. Translating Dockerfiles to Earthfiles is usually a matter of copy-pasting and making minor adjustments. See thegetting started page for some Earthfile examples.
Bazel is a build tool developed by Google to optimize the speed, correctness, and reproducibility of their internal monorepo codebase. The main difference between Bazel and Earthly is that Bazel is abuild system, whereas Earthly is ageneral-purpose CI/CD framework. For a more in-depth explanation seeour FAQ.
- Please report bugs asGitHub issues.
- Join us onSlack!
- Questions via GitHub issues are welcome!
- PRs welcome! But please give a heads-up in a GitHub issue before starting work. If there is no GitHub issue for what you want to do, please create one.
- To build from source, check thecontributing page.
Earthly is licensed under the Mozilla Public License Version 2.0. SeeLICENSE.
About
Super simple build framework with fast, repeatable builds and an instantly familiar syntax – like Dockerfile and Makefile had a baby.
Topics
Resources
License
Code of conduct
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.






