Skip to content

Commit

Permalink
Use compose plugin for file validation
Browse files Browse the repository at this point in the history
  • Loading branch information
dappnodedev authored Aug 5, 2024
1 parent df351d5 commit db76921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/schemas/src/validateComposeSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export async function validateComposeSchema(composePaths: string[]): Promise<voi

return new Promise((resolve, reject) => {
exec(
`docker-compose -f ${composePaths.join(" -f")} config`,
`docker compose -f ${composePaths.join(" -f ")} config`,
(error, _stdout, stderr) => {
if (error) {
console.error(`Error: ${error.message}`);
Expand Down

0 comments on commit db76921

Please sign in to comment.