Skip to content

Commit

Permalink
Merge pull request #251 from dappnode/pablo/official-compose-schema
Browse files Browse the repository at this point in the history
Bypass compose JSON schema validation
  • Loading branch information
pablomendezroyo authored Jun 28, 2022
2 parents 47d4625 + fd3b3e7 commit 305bfba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/tasks/buildAndUpload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,9 @@ as ${releaseFilesDefaultNames.avatar} and then remove the 'manifest.avatar' prop
validateManifestSchema(manifest);
break;
case "compose":
// validate against official docker compose schema
validateComposeSchema(composeForDev);
// validate against official docker compose schema. Bypass until fix:
// validateComposeSchema(composeForDev):

// validate against custom dappnode requirements
validateDappnodeCompose(composeForDev, manifest);
break;
Expand Down

0 comments on commit 305bfba

Please sign in to comment.