Remove timeout docker

This commit is contained in:
retropikzel 2026-02-20 08:54:43 +02:00
parent 878a69bcd0
commit 27254873a3
2 changed files with 0 additions and 8 deletions

4
Jenkinsfile vendored
View File

@ -20,7 +20,6 @@ pipeline {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'sh kill_days_containers.sh' sh 'sh kill_days_containers.sh'
sh 'docker system prune -a -f' sh 'docker system prune -a -f'
sh 'install timeout_docker.sh /usr/local/bin/docker'
} }
} }
} }
@ -32,7 +31,6 @@ pipeline {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'sh kill_days_containers.sh' sh 'sh kill_days_containers.sh'
sh 'docker system prune -a -f' sh 'docker system prune -a -f'
sh 'install timeout_docker.sh /usr/local/bin/docker'
} }
} }
} }
@ -44,7 +42,6 @@ pipeline {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'sh kill_days_containers.sh' sh 'sh kill_days_containers.sh'
sh 'docker system prune -a -f' sh 'docker system prune -a -f'
sh 'install timeout_docker.sh /usr/local/bin/docker'
} }
} }
} }
@ -56,7 +53,6 @@ pipeline {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') { catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'sh kill_days_containers.sh' sh 'sh kill_days_containers.sh'
sh 'docker system prune -a -f' sh 'docker system prune -a -f'
sh 'install timeout_docker.sh /usr/local/bin/docker'
} }
} }
} }

View File

@ -1,4 +0,0 @@
#!/bin/sh
set -x
timeout -f --kill-after=1 5h /usr/bin/docker "$@"