тест docker

main
Лев 2025-08-27 11:39:19 +05:00
parent 3c2945e986
commit 08001462cc
1 changed files with 4 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -9,7 +9,10 @@ pipeline {
sh "docker images -a"
sh "docker-compose up --force-recreate --build -d parse_saby"
sh "docker images -a"
sh "docker images -a | grep 'git.dataekb.ru/sadikov/parse_saby/parse_saby_main' | awk '{print $3}' | xargs docker rmi"
sh """
#!/bin/bash
"docker images -a | grep 'git.dataekb.ru/sadikov/parse_saby/parse_saby_main' | awk '{print $3}' | xargs docker rmi"
"""
sh "docker images -a"
}
}