An open API service indexing awesome lists of open source software.

https://github.com/pythoninthegrass/earthly

Customized docker image for earthly
https://github.com/pythoninthegrass/earthly

Last synced: 17 days ago
JSON representation

Customized docker image for earthly

Awesome Lists containing this project

README

          

# earthly

[Customized](https://docs.earthly.dev/ci-integration/build-an-earthly-ci-image) docker image for [earthly](https://earthly.dev/)

## Minimum Requirements

* [Docker](https://docs.docker.com/get-docker/)

## Usage

```bash
# docker compose
docker compose up -d
docker compose stop
docker compose down --volumes

# docker
docker run -d -it --rm \
--name earthly-buildkitd \
--privileged \
-v earthly-cache:/tmp/earthly:rw \
-e BUILDKIT_MAX_PARALLELISM=20 \
ghcr.io/pythoninthegrass/earthly \
"/usr/bin/entrypoint.sh buildkitd --config=/etc/buildkitd.toml"

docker stop earthly-buildkitd
docker rm earthly-buildkitd
```

## Further Reading

* [Configuration reference | Earthly](https://docs.earthly.dev/docs/earthly-config)