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 30, 2024
1 parent bb0250a commit f18d0b9
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 f18d0b9

Please sign in to comment.