use local/id:version-ts as docker image tag for locally built apps

This commit is contained in:
Johannes Zellner
2026-01-26 21:45:39 +01:00
parent b43daf2f08
commit ef2a94c2c8
3 changed files with 11 additions and 10 deletions
+1 -1
View File
@@ -226,7 +226,7 @@ async function downloadImage(manifest) {
if (diskUsage.available < (1024*1024*1024)) throw new BoxError(BoxError.DOCKER_ERROR, `Not enough disk space to pull docker image. available: ${diskUsage.available}`);
if (manifest.dockerImage.indexOf('file:') === 0) {
if (manifest.dockerImage.indexOf('local/') === 0) {
await docker.buildImage(manifest);
} else {
await docker.downloadImage(manifest);