We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0a625d commit 4fbbdb3Copy full SHA for 4fbbdb3
src/lib/DockerManager.ts
@@ -1786,7 +1786,9 @@ export default class DockerManager {
1786
await container.stop();
1787
await container.remove({ force: true });
1788
} catch (e) {
1789
- this.log.warn(`Cannot remove temporary container ${tempContainerName}: ${e.message}`);
+ if (!e.message.includes('already stopped')) {
1790
+ this.log.warn(`Cannot remove temporary container ${tempContainerName}: ${e.message}`);
1791
+ }
1792
}
1793
1794
0 commit comments