LogoLogo
HomeBlogGitHubGet Started FreeLogin
Earthly 0.6
Earthly 0.6
  • 👋Introduction
  • 💻Installation
  • 🎓Learn the basics
    • Part 1: A simple Earthfile
    • Part 2: Outputs
    • Part 3: Adding dependencies With Caching
    • Part 4: Args
    • Part 5: Importing
    • Part 6: Using Docker In Earthly
    • Final words
  • ✅Best practices
  • 📖Docs
    • Guides
      • Authenticating Git and image registries
      • Target, artifact and command referencing
      • Build arguments and secrets
      • User-defined commands (UDCs)
      • Managing cache
      • Advanced local caching
      • Using Docker in Earthly
      • Integration Testing
      • Debugging techniques
      • Multi-platform builds
      • Podman
      • Configuring registries
        • AWS ECR
        • GCP Artifact Registry
        • Azure ACR
        • Self-signed certificates
      • Using the Earthly Docker Images
        • earthly/earthly
        • earthly/buildkitd
    • Remote runners
    • Remote caching
    • Earthfile reference
      • Builtin args
      • Excluding patterns
      • Version-specific features
    • The earthly command
    • Configuration reference
    • Examples
    • Misc
      • Alternative installation
      • Data collection
      • Definitions
      • Public key authentication
  • 🔧CI Integration
    • Overview
    • Use the Earthly CI Image
    • Build your own Earthly CI Image
    • Pull-Through Cache
    • Remote BuildKit
    • Vendor-Specific Guides
      • Jenkins
      • Circle CI
      • GitHub Actions
      • AWS CodeBuild
      • Kubernetes
      • Google Cloud Build
      • GitLab CI/CD
      • Woodpecker CI
  • ☁️ Earthly Cloud
    • Overview
    • Cloud secrets
    • Satellites
      • Managing Satellites
      • Using Satellites
Powered by GitBook
On this page
  • Specifying Version and features
  • Example
  • Feature flags

Was this helpful?

Edit on GitHub
  1. Docs
  2. Earthfile reference

Version-specific features

PreviousExcluding patternsNextThe earthly command

Last updated 1 year ago

Was this helpful?

Earthly makes use of feature flags to release new and experimental features. Some features must be explicitly enabled to use them.

Earthly uses ; once a new feature has reached stability, a new major or minor version of Earthly will be released with the feature enabled by default.

Specifying Version and features

Each Earthfile should list the current earthly version it depends on using the command. The VERSION command was first introduced under 0.5 and is optional as of 0.6; however, it will become mandatory in a future version.

VERSION [<flags>...] <version-number>

Example

To Future-proof Earthfiles it is recommended to add a VERSION command. Consider a case where an Earthfile is developed against earthly v0.5.23 and makes use of the experimental FOOBAR command, the first line of the Earthfile should be:

VERSION --foobar 0.5

This will ensure that backwards-breaking features that are introduced in a later version will not change how this Earthfile is interpreted.

In a future release (e.g. 0.X), the FOOBAR command might be promoted from the experimental stage to stable stage, at that point, version 0.X would automatically set the --foobar flag to true, and the Earthfile could be updated to require version 0.X (or later), and could be rewritten as VERSION 0.X.

Feature flags

Feature flag
status
description

--use-copy-include-patterns

0.6

Speeds up COPY transfers

--referenced-save-only

0.6

Changes the behavior of SAVE commands in a significant way

--for-in

0.6

Enables support for FOR ... IN ... commands

--require-force-for-unsafe-saves

0.6

Requires --force for saving artifacts locally outside the Earthfile's directory

--no-implicit-ignore

0.6

Eliminates implicit .earthlyignore entries, such as Earthfile and .tmp-earthly-out

--earthly-version-arg

Beta

Enables builtin ARGs: EARTHLY_VERSION and EARTHLY_BUILD_SHA

--shell-out-anywhere

Experimental

Allows shelling-out in any earthly command (including in the middle of ARG)

--use-registry-for-with-docker

Experimental

Makes use of the embedded BuildKit Docker registry (instead of tar files) for WITH DOCKER loads and pulls

Note that the features flags are disabled by default in Earthly versions lower than the version listed in the "status" column above.

--use-copy-include-patterns

Speeds up COPY transfers.

--referenced-save-only

Changes the behavior of SAVE commands in a significant way

When enabled, Earthly will output artifacts resulting from SAVE ARTIFACT ... AS LOCAL ... and images resulting from SAVE IMAGE and also execute RUN --push commands only if they are connected to the main target through a chain of BUILD commands.

For example, chains like these will produce outputs (and possibly push, if enabled):

  • main target -> SAVE

  • main target -> BUILD -> SAVE

  • main target -> BUILD -> BUILD -> SAVE

  • main target -> BUILD -> BUILD -> BUILD -> SAVE

While chains like these will NOT produce outputs nor would they push:

  • main target -> FROM -> SAVE

  • main target -> COPY -> SAVE

  • main target -> FROM -> BUILD -> SAVE

  • main target -> BUILD -> FROM -> SAVE

  • main target -> BUILD -> BUILD -> COPY -> SAVE

This works the same regardless of whether the targets in the chain are remote or local.

When this feature is disabled, Earthly will output artifacts and images regardless of whether they are connected to the main target through a chain of BUILD commands, however the outputs will be subject to the following rules:

  • All SAVE ARTIFACT ... AS LOCAL ..., with local Earthfiles will be output

  • SAVE ARTIFACT ... AS LOCAL ... produced in remote targets will not be output

  • All images with tag names (both local and remote Earthfiles) will be output

  • No image will be pushed or RUN --push command will be executed if the target is remote

--for-in

Enables support for FOR ... IN ... commands

When enabled, Earthly will allow the use of FOR ... IN ... commands.

When enabled, Earthly will only send the files listed for the specific command. Without this feature, Earthly sends the entire directory of files excluding files listed in the .

📖
semantic versioning
.earthlyignore file
VERSION
COPY