diff --git a/src/main/runner/runner-container.ts b/src/main/runner/runner-container.ts index 3d960df..1bd8f36 100644 --- a/src/main/runner/runner-container.ts +++ b/src/main/runner/runner-container.ts @@ -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); } }