Skip to content

Commit

Permalink
fix: Use --remove-orphans to suppress docker compose warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tomi committed Aug 29, 2024
1 parent 2ee9b2b commit 4f8288f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@n8n/benchmark/scripts/runForN8nSetup.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function main() {
});

try {
await dockerComposeClient.$('up', '-d', 'n8n');
await dockerComposeClient.$('up', '-d', '--remove-orphans', 'n8n');

await dockerComposeClient.$('run', 'benchmark', 'run', `--scenarioNamePrefix=${n8nSetupToUse}`);
} catch (error) {
Expand Down

0 comments on commit 4f8288f

Please sign in to comment.