Merge branch 'master' of github.com:Budibase/budibase into fix/user-column-search-mapping

This commit is contained in:
mike12345567 2023-10-06 12:16:54 +01:00
commit cfe261a8f6
1 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,8 @@ export async function checkDockerConfigured() {
"docker/docker-compose has not been installed, please follow instructions at: https://docs.budibase.com/docs/docker-compose"
const docker = await lookpath("docker")
const compose = await lookpath("docker-compose")
if (!docker || !compose) {
const composeV2 = await lookpath("docker compose")
if (!docker || (!compose && !composeV2)) {
throw error
}
}