fix: fixed agent docker installation
Gitea/docker-base-images/jdk14-alpine/pipeline/head There was a failure building this commit Details

amorozov 2023-04-04 19:54:37 +03:00
parent 4fe1957af6
commit 9aaaca58d1
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -11,16 +11,16 @@ pipeline {
docker {
image 'alpine:3.17.3'
// Mount docker socket for docker-in-docker
args '-v /var/run/docker.sock:/var/run/docker.sock -v /usr/bin/docker:/usr/bin/docker'
args '-v /var/run/docker.sock:/var/run/docker.sock -v /usr/bin/docker:/usr/local/bin/docker'
}
}
stages {
stage('prepare') {
steps {
sh 'echo ${PATH}'
sh 'ls -la /usr/bin | grep docker'
sh 'ls -la /usr/local/bin | grep docker'
sh "which docker"
sh 'chmod +x /usr/bin/docker'
sh 'chmod +x /usr/local/bin/docker'
sh """
apk update && \
apk add --no-cache git