🔁 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 more git 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 your package.json
, go.mod
, build.gradle
, or Cargo.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 as Jenkins, Circle CI, GitHub Actions, and GitLab 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, and complex 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.
ℹ️ Note Earthfiles might seem very similar to Dockerfile multi-stage builds. In fact, the same 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 about how Earthly is different from Dockerfiles.
See installation instructions.
To build from source, check the contributing page.
Here are some resources to get you started with Earthly
- 🏁 Getting started guide
- 👀 Examples
- 🔍 Explore Earthly's own build
- ✔️ Best practices
See also the full documentation.
Reference pages
# Earthfile
VERSION 0.8
FROM golang:1.15-alpine3.13
RUN apk --update --no-cache add git
WORKDIR /go-example
all:
BUILD +lint
BUILD +docker
build:
COPY main.go .
RUN go build -o build/go-example main.go
SAVE ARTIFACT build/go-example AS LOCAL build/go-example
lint:
RUN go get golang.org/x/lint/golint
COPY main.go .
RUN golint -set_exit_status ./...
docker:
COPY +build/go-example .
ENTRYPOINT ["/go-example/go-example"]
SAVE IMAGE go-example:latest
// main.go
package main
import "fmt"
func main() {
fmt.Println("hello world")
}
Invoke the build using earthly +all
.
Examples for other languages are available in the examples dir.
Whenever possible, Earthly automatically executes targets in parallel.
Cut down build times in CI through shared remote caching.
Build for multiple platforms in parallel.
VERSION 0.8
all:
BUILD \
--platform=linux/amd64 \
--platform=linux/arm64 \
--platform=linux/arm/v7 \
--platform=linux/arm/v6 \
+build
build:
FROM alpine:3.18
CMD ["uname", "-m"]
SAVE IMAGE multiplatform-image
No need to ask your team to install protoc
, 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.
VERSION 0.8
FROM golang:1.15-alpine3.13
WORKDIR /proto-example
proto:
FROM namely/protoc-all:1.29_4
COPY api.proto /defs
RUN --entrypoint -- -f api.proto -l go
SAVE ARTIFACT ./gen/pb-go /pb AS LOCAL pb
build:
COPY go.mod go.sum .
RUN go mod download
COPY +proto/pb pb
COPY main.go ./
RUN go build -o build/proto-example main.go
SAVE ARTIFACT build/proto-example
See full example code.
Earthly can be used to reference and build targets from other directories or even other repositories. For example, if we wanted to build an example target from the github.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-target FROM +some-target COPY +some-target/my-artifact ./
-
Other directories
BUILD ./some/local/path+some-target FROM ./some/local/path+some-target COPY ./some/local/path+some-target/my-artifact ./
-
Other repositories
BUILD github.com/someone/someproject:v1.2.3+some-target FROM github.com/someone/someproject:v1.2.3+some-target COPY github.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.
earthly set /user/github/token 'shhh...'
release:
RUN --push --secret GITHUB_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 image referencing 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 the Earthfile 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 command FROM DOCKERFILE
to inherit the commands in an existing Dockerfile.
build:
FROM DOCKERFILE .
SAVE IMAGE some-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 the getting 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 a build system, whereas Earthly is a general-purpose CI/CD framework. For a more in-depth explanation see our FAQ.
- Please report bugs as GitHub issues.
- Join us on Slack!
- 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 the contributing page.
Earthly is licensed under the Mozilla Public License Version 2.0. See LICENSE.