From 93857554720d73dd7e673419e8aec37f58ad62a7 Mon Sep 17 00:00:00 2001 From: Stefan Van Dyck Date: Tue, 15 Oct 2024 16:46:50 +0200 Subject: [PATCH] Add additional docker buildx command to avoid concuurent usage of gralde cache --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index c0f734d2..2f8cfe58 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,15 @@ Most of the projects have the Australian gradle repo hard coded and this makes d Unfortunately it is not possible to share a gradle between different instances of gradle. That means we can only build a single image at a time. +Additionally a specific buildx builder might be required to build the images. +Again to limit the amount of concurrent gradle instances. +```commandline +docker buildx create --use \  ✔  09:23:28 ▓▒░ + --name living-atlas \ + --driver docker-container \ + --config ./buildkitd.toml +``` + ### Local To run the portal locally, you can use the docker-compose files in the [/docker folder](/docker).