Skip to content

Commit

Permalink
fix(runner): remove volume with container
Browse files Browse the repository at this point in the history
  • Loading branch information
Slordef committed Apr 2, 2024
1 parent 5aacc72 commit d59ebaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/runner/runner-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export class RunnerContainer {
remove(): void {
log(`${this.name} Remove Runner`);
clearInterval(this.timeout);
new Spawning('docker', ['rm', '-f', this.dockerID], { shell: true });
new Spawning('docker', ['rm', '-f', '-v', this.dockerID], { shell: true });
this.manager.removeRunningContainer(this);
}
}

0 comments on commit d59ebaa

Please sign in to comment.