From 0c975e851a28fe7072f68414166c5cab02055b6c Mon Sep 17 00:00:00 2001 From: zontreck Date: Fri, 22 Nov 2024 20:34:41 -0700 Subject: [PATCH] Be more aggressive about stopping and killing the provided containers --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4f270d5..1a0730a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -46,9 +46,9 @@ pipeline { #!/bin/bash docker-compose down - docker stop linuxagent || true - docker stop linuxfs || true - docker stop archagent || true + docker stop -t 10 linuxagent || true + docker stop -t 10 linuxfs || true + docker stop -t 10 archagent || true ''' } }