Remove with force.

This commit is contained in:
mike12345567 2024-12-16 18:07:43 +00:00
parent 1d949fce2f
commit a923a119c5
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ function getTestcontainers(): ContainerInfo[] {
} }
function removeContainer(container: ContainerInfo) { function removeContainer(container: ContainerInfo) {
execSync(`docker rm ${container.ID}`) execSync(`docker rm -f ${container.ID}`)
} }
export function getContainerByImage(image: string) { export function getContainerByImage(image: string) {