Implemented BuildKit https://github.com/caprover/caprover/issues/1582
Run build / build (push) Has been cancelled
Run formatter / check-code-formatting (push) Has been cancelled
Run lint / run-lint (push) Has been cancelled
Build and push the edge image / run-pre-checks (push) Has been cancelled
Build and push the edge image / build-publish-docker-hub (push) Has been cancelled

This commit is contained in:
Kasra Bigdeli
2025-11-27 22:24:59 -08:00
parent 1f54088302
commit 0b3fdd31de
3 changed files with 4 additions and 0 deletions
+1
View File
@@ -1,6 +1,7 @@
## [Next Version - available as `edge`]
- New: Ability to deploy simplified Docker compose [PR-191](https://github.com/caprover/caprover-frontend/pull/191)
- New: Defaulting to BuildKit [Issue-1582](https://github.com/caprover/caprover/issues/1582)
- Improved: Descriptive error on installations on incompatible systems (e.g. Proxmox LXC) [issues-2326](https://github.com/caprover/caprover/issues/2326)
- Improved: Moved one click app creation process to backend for more stability [PR-2334](https://github.com/caprover/caprover/pull/2334)
- Improved: Reduced the Backup size by excluding the GoAccess logs [PR-2336](https://github.com/caprover/caprover/pull/2336)
+1
View File
@@ -321,6 +321,7 @@ class DockerApi {
const optionsForBuild: Dockerode.ImageBuildOptions = {
t: imageName,
buildargs: buildargs,
version: CaptainConstants.configs.defaultDockerBuildVersion,
}
if (Object.keys(registryConfig).length > 0) {
+2
View File
@@ -21,6 +21,8 @@ const configs = {
defaultMaxLogSize: '512m',
defaultDockerBuildVersion: '2' as '1' | '2',
buildLogSize: 50,
appLogSize: 500,