fix(jenkins): new docker host rootless
All checks were successful
Portfolio/pipeline/head This commit looks good

This commit is contained in:
2026-01-27 15:46:41 +01:00
parent f1794abe7e
commit df209edb27

3
Jenkinsfile vendored
View File

@@ -1,8 +1,9 @@
pipeline {
agent any
environment {
DOCKER_HOST = "unix:///var/run/docker.sock"
DOCKER_HOST = "unix:///run/user/1001/docker.sock"
APP_VERSION = "${env.BRANCH_NAME}-${env.BUILD_NUMBER}"
DOCKER_CONFIG = "${env.WORKSPACE}/.docker"
}
stages {
stage('Build') {