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
- Host: GitHub
- URL: https://github.com/pythoninthegrass/earthly
- Owner: pythoninthegrass
- Created: 2024-11-15T21:23:20.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-07T22:36:15.000Z (12 months ago)
- Last Synced: 2025-03-09T13:11:32.240Z (11 months ago)
- Language: Dockerfile
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
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)