This commit is contained in:
Andras Bacsai
2022-07-25 11:08:09 +00:00
parent dd2a876a67
commit e47395bab7
4 changed files with 6 additions and 3 deletions

View File

@@ -512,7 +512,7 @@ export async function executeDockerCmd({ dockerId, command }: { dockerId: string
await createRemoteEngineConfiguration(dockerId)
}
return await asyncExecShell(
`DOCKER_HOST="${host}" ${command}`
`DOCKER_BUILDKIT=1 DOCKER_HOST="${host}" ${command}`
);
}
export async function startTraefikProxy(id: string): Promise<void> {