You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1021 B
39 lines
1021 B
podTemplate(yaml: """
|
|
apiVersion: v1
|
|
kind: Pod
|
|
spec:
|
|
volumes:
|
|
- name: docker-socket
|
|
emptyDir: {}
|
|
containers:
|
|
- name: docker
|
|
image: docker:19.03.1
|
|
command:
|
|
- sleep
|
|
args:
|
|
- 99d
|
|
volumeMounts:
|
|
- name: docker-socket
|
|
mountPath: /var/run
|
|
- name: docker-daemon
|
|
image: docker:19.03.1-dind
|
|
securityContext:
|
|
privileged: true
|
|
volumeMounts:
|
|
- name: docker-socket
|
|
mountPath: /var/run
|
|
'''
|
|
) {
|
|
|
|
node(POD_LABEL) {
|
|
stage('Git') {
|
|
git url: 'https://gyulai.cloud/git/bme/covidok-backend.git',
|
|
credentialsId: '1b1c30a0-590d-41d4-b775-bdb90e837bc8'
|
|
container('docker') {
|
|
stage('Build and publish dev Docker image') {
|
|
sh 'docker build -f /home/jenkins/agent/workspace/gitea-bme_covidok-backend_master/CoviDok/Dockerfile.CI -t docker.local/bme/covidok:latest /home/jenkins/agent/workspace && docker push docker.local/bme/covidok'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|