Decrease build time of docker compose inside GitHub Actions using layers cache.
2x faster builds:
.github/workflows/not-cached.ymluses./docker-compose.ci.not-cached.yml. Push to ghcr.io using the:not-cachedtag to avoid collisions.github/workflows/cached.ymluses./docker-compose.yml. Caching achieved by:- ENV variables 
DOCKER_BUILDKITandCOMPOSE_DOCKER_CLI_BUILD - docker/setup-buildx-action
 - --build-arg BUILDKIT_INLINE_CACHE=1
 cache_frominside docker-compose file:build: context: ./app1 cache_from: - ghcr.io/cyanofresh/docker-compose-ga-cache-example_app1
- ENV variables 
 
