Customized docker image for earthly
# 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