@@ -2,6 +2,9 @@ import groovy.json.JsonOutput
2
2
3
3
def version = " UNKNOWN"
4
4
def commit = " UNKNOWN"
5
+ def dockerHubRepo = " overture/rollcall"
6
+ def gitHubRegistry = " ghcr.io"
7
+ def gitHubRepo = " overture-stack/rollcall"
5
8
6
9
pipeline {
7
10
agent {
@@ -26,21 +29,22 @@ spec:
26
29
- name: docker
27
30
image: docker:18-git
28
31
tty: true
29
- volumeMounts:
30
- - mountPath: /var/run/docker.sock
31
- name: docker-sock
32
+ env:
33
+ - name: DOCKER_HOST
34
+ value: tcp://localhost:2375
35
+ - name: HOME
36
+ value: /home/jenkins/agent
32
37
- name: dind-daemon
33
38
image: docker:18.06-dind
34
39
securityContext:
35
40
privileged: true
41
+ runAsUser: 0
36
42
volumeMounts:
37
43
- name: docker-graph-storage
38
44
mountPath: /var/lib/docker
45
+ securityContext:
46
+ runAsUser: 1000
39
47
volumes:
40
- - name: docker-sock
41
- hostPath:
42
- path: /var/run/docker.sock
43
- type: File
44
48
- name: docker-graph-storage
45
49
emptyDir: {}
46
50
"""
@@ -73,10 +77,19 @@ spec:
73
77
withCredentials([usernamePassword(credentialsId :' OvertureDockerHub' , usernameVariable : ' USERNAME' , passwordVariable : ' PASSWORD' )]) {
74
78
sh ' docker login -u $USERNAME -p $PASSWORD'
75
79
}
76
- sh " docker build --network=host -f Dockerfile . -t overture/rollcall:edge -t overture/rollcall:${ commit} "
77
- sh " docker push overture/rollcall:edge"
78
- sh " docker push overture/rollcall:${ commit} "
80
+ sh " docker build --network=host -f Dockerfile . -t ${ dockerHubRepo} :edge -t ${ dockerHubRepo} :${ commit} "
81
+ sh " docker push ${ dockerHubRepo} :edge"
82
+ sh " docker push ${ dockerHubRepo} :${ commit} "
83
+ }
84
+ container(' docker' ) {
85
+ withCredentials([usernamePassword(credentialsId :' OvertureBioGithub' , usernameVariable : ' USERNAME' , passwordVariable : ' PASSWORD' )]) {
86
+ sh " docker login ${ gitHubRegistry} -u $USERNAME -p $PASSWORD "
87
+ }
88
+ sh " docker build --network=host -f Dockerfile . -t ${ gitHubRegistry} /${ gitHubRepo} :edge -t ${ gitHubRegistry} /${ gitHubRepo} :${ commit} "
89
+ sh " docker push ${ gitHubRegistry} /${ gitHubRepo} :edge"
90
+ sh " docker push ${ gitHubRegistry} /${ gitHubRepo} :${ commit} "
79
91
}
92
+
80
93
}
81
94
}
82
95
stage(' Release & tag' ) {
@@ -87,15 +100,24 @@ spec:
87
100
container(' docker' ) {
88
101
withCredentials([usernamePassword(credentialsId : ' OvertureBioGithub' , passwordVariable : ' GIT_PASSWORD' , usernameVariable : ' GIT_USERNAME' )]) {
89
102
sh " git tag ${ version} "
90
- sh " git push https://${ GIT_USERNAME} :${ GIT_PASSWORD} @github.com/overture-stack/rollcall --tags"
103
+ sh " git push https://${ GIT_USERNAME} :${ GIT_PASSWORD} @github.com/${ gitHubRepo } --tags"
91
104
}
92
105
withCredentials([usernamePassword(credentialsId :' OvertureDockerHub' , usernameVariable : ' USERNAME' , passwordVariable : ' PASSWORD' )]) {
93
106
sh ' docker login -u $USERNAME -p $PASSWORD'
94
107
}
95
- sh " docker build --network=host -f Dockerfile . -t overture/rollcall :latest -t overture/rollcall :${ version} "
96
- sh " docker push overture/rollcall :${ version} "
97
- sh " docker push overture/rollcall :latest"
108
+ sh " docker build --network=host -f Dockerfile . -t ${ dockerHubRepo } :latest -t ${ dockerHubRepo } :${ version} "
109
+ sh " docker push ${ dockerHubRepo } :${ version} "
110
+ sh " docker push ${ dockerHubRepo } :latest"
98
111
}
112
+ container(' docker' ) {
113
+ withCredentials([usernamePassword(credentialsId :' OvertureBioGithub' , usernameVariable : ' USERNAME' , passwordVariable : ' PASSWORD' )]) {
114
+ sh " docker login ${ gitHubRegistry} -u $USERNAME -p $PASSWORD "
115
+ }
116
+ sh " docker build --network=host -f Dockerfile . -t ${ gitHubRegistry} /${ gitHubRepo} :latest -t ${ gitHubRegistry} /${ gitHubRepo} :${ version} "
117
+ sh " docker push ${ gitHubRegistry} /${ gitHubRepo} :${ version} "
118
+ sh " docker push ${ gitHubRegistry} /${ gitHubRepo} :latest"
119
+ }
120
+
99
121
}
100
122
}
101
123
}
0 commit comments